From 30d7dabda20fe2c22fa0702b4859e0d09411f295 Mon Sep 17 00:00:00 2001 From: Time-Green Date: Tue, 30 May 2023 20:21:06 +0200 Subject: [PATCH] Fixes hardcore random never paying out as nonantag (#75725) Broken by #73623 Fixes #75368 I have missed out on like 150 points to this untill I figured out what was happening The proc passes the mob, but expects the mind, so it runtimes and never pays you your hardcore random score sigh :cl: fix: Hardcore random pays your score again as non-antag /:cl: --- code/__HELPERS/roundend.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/__HELPERS/roundend.dm b/code/__HELPERS/roundend.dm index 21d8e8c5ad2..e19b4a6903e 100644 --- a/code/__HELPERS/roundend.dm +++ b/code/__HELPERS/roundend.dm @@ -197,7 +197,7 @@ if(!didthegamerwin) return FALSE player_client.give_award(/datum/award/score/hardcore_random, human_mob, round(human_mob.hardcore_survival_score * 2)) - else if(considered_escaped(human_mob)) + else if(considered_escaped(human_mob.mind)) player_client.give_award(/datum/award/score/hardcore_random, human_mob, round(human_mob.hardcore_survival_score))