summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/xom.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/crawl-ref/source/xom.cc b/crawl-ref/source/xom.cc
index c1d0419e53..ca6782ae57 100644
--- a/crawl-ref/source/xom.cc
+++ b/crawl-ref/source/xom.cc
@@ -1697,11 +1697,10 @@ static bool _xom_is_good(int sever, int tension)
count++;
you_teleport_now(false);
more();
- if (one_chance_in(10))
+ if (one_chance_in(10) || count >= 7 + random2(5))
break;
}
- while (x_chance_in_y(3, 4) || count <= 7 + random2(5)
- || player_in_a_dangerous_place());
+ while (x_chance_in_y(3, 4) || player_in_a_dangerous_place());
maybe_update_stashes();
// Take a note.
@@ -2716,15 +2715,16 @@ static bool _xom_is_bad(int sever, int tension)
int count = 0;
do
{
- count++;
you_teleport_now(false);
more();
+ if (count++ >= 7 + random2(5))
+ break;
}
- while (count <= 7 + random2(5)
- || x_chance_in_y(3, 4) && !player_in_a_dangerous_place());
- badness = player_in_a_dangerous_place() ? 3 : 1;
+ while (x_chance_in_y(3, 4) && !player_in_a_dangerous_place());
maybe_update_stashes();
+ badness = player_in_a_dangerous_place() ? 3 : 1;
+
// Take a note.
static char tele_buf[80];
snprintf(tele_buf, sizeof(tele_buf),