From 6584ced55c19de9491b50666dd1d00c99e5828fa Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sat, 25 Jul 2009 08:33:14 +0000 Subject: [PATCH] mourning peasants = no taxes this week. --- src/common/gamecode/economy.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/common/gamecode/economy.c b/src/common/gamecode/economy.c index 53acc3252..546473289 100644 --- a/src/common/gamecode/economy.c +++ b/src/common/gamecode/economy.c @@ -3299,8 +3299,9 @@ peasant_taxes(region * r) int morale; f = region_get_owner(r); - if (f==NULL) return; - + if (f==NULL || is_mourning(r, turn)) { + return; + } money = rmoney(r); if (money<=0) return;