From cf82ef1f79d779a2f74cb39341a38e359f172379 Mon Sep 17 00:00:00 2001 From: toasterbabe Date: Tue, 18 Apr 2017 12:33:19 +0100 Subject: [PATCH] As requested by Mystic in That Topic, made the end-of-act time bonus for 30 seconds halved and removed the 45 seconds bonus option. --- src/y_inter.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/y_inter.c b/src/y_inter.c index c4f425beb..ee7755bc9 100644 --- a/src/y_inter.c +++ b/src/y_inter.c @@ -1556,8 +1556,7 @@ static void Y_SetTimeBonus(player_t *player, y_bonus_t *bstruct) // calculate time bonus secs = player->realtime / TICRATE; - if (secs < 30) /* :30 */ bonus = 100000; - else if (secs < 45) /* :45 */ bonus = 50000; + if (secs < 30) /* :30 */ bonus = 50000; else if (secs < 60) /* 1:00 */ bonus = 10000; else if (secs < 90) /* 1:30 */ bonus = 5000; else if (secs < 120) /* 2:00 */ bonus = 4000;