From fcbc834a2b846b86760d12d9aea4b686e44a5627 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sat, 4 Feb 2006 11:54:51 +0000 Subject: [PATCH] global warming only in summer --- src/eressea/korrektur.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/eressea/korrektur.c b/src/eressea/korrektur.c index 16b4d0093..c0a03466b 100644 --- a/src/eressea/korrektur.c +++ b/src/eressea/korrektur.c @@ -1009,7 +1009,9 @@ korrektur(void) do_once("asfi", &fix_astral_firewalls); frame_regions(); #ifdef GLOBAL_WARMING - global_warming(); + if (current_season == SEASON_SUMMER) { + global_warming(); + } #endif fix_astralplane(); fix_firewalls();