From f0fd63214df5427b59c17348c58f546eee2bb152 Mon Sep 17 00:00:00 2001 From: Steve Date: Thu, 28 Jul 2016 14:57:06 +0100 Subject: [PATCH] Suspicion reduction tweaks. --- src/battle/entities.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/battle/entities.c b/src/battle/entities.c index ff26e9a..e413505 100644 --- a/src/battle/entities.c +++ b/src/battle/entities.c @@ -178,7 +178,7 @@ void doEntities(void) if (e->killedBy == player && battle.hasSuspicionLevel) { - battle.suspicionLevel -= (MAX_SUSPICION_LEVEL * 0.25); + battle.suspicionLevel -= (MAX_SUSPICION_LEVEL * 0.12); } if (e == player)