From 5e9caf8a7e6aca6acc920a74c650649e7e060770 Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Fri, 15 Feb 2019 18:45:33 +0100 Subject: Consistent evo rounding; fix fractional /share. --- src/game/g_combat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/game/g_combat.c') diff --git a/src/game/g_combat.c b/src/game/g_combat.c index 6cadeec..2bff478 100644 --- a/src/game/g_combat.c +++ b/src/game/g_combat.c @@ -462,7 +462,7 @@ void player_die( gentity_t *self, gentity_t *inflictor, gentity_t *attacker, int reward = G_RoundFunds( reward, PTE_ALIENS ); if( g_logFunds.integer ) - G_LogPrintf("KillReward: %d %d %f: %s^7 rewarded with %.3f evo(s)\n", + G_LogPrintf("KillReward: %d %d %f: %s^7 rewarded with %.2f evo(s)\n", self - g_entities, i, reward, player->client->pers.netname, reward); G_AddFundsToClient( player->client, reward, qtrue ); -- cgit