From 5ba875980420dd85678f3ea4dc25b87c14995966 Mon Sep 17 00:00:00 2001 From: onpon4 Date: Sun, 10 Jan 2016 19:07:16 -0500 Subject: [PATCH] Increased the chance of the cloak fighter running. Also fixed the chance in Classic difficulty; accidentally made it 10 times as likely as in the original. --- src/alien.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/alien.cpp b/src/alien.cpp index 331ac06..a169209 100644 --- a/src/alien.cpp +++ b/src/alien.cpp @@ -1834,7 +1834,7 @@ void alien_hurt(object *alien, object *attacker, int damage, bool ion) } } - run_chance = (game.difficulty == DIFFICULTY_ORIGINAL) ? 0.2 : damage / 150.; + run_chance = (game.difficulty == DIFFICULTY_ORIGINAL) ? 0.02 : damage / 50.; if ((alien->flags & FL_RUNSAWAY) && CHANCE(run_chance)) {