From 9101b02c7bea72e85992c8638d444abaf00d0f97 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Mon, 10 Jul 2023 23:22:54 +0000 Subject: [PATCH] ternary gaming (#17942) Co-authored-by: deltanedas <@deltanedas:kde.org> --- Content.Server/Objectives/Conditions/KillPersonCondition.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Objectives/Conditions/KillPersonCondition.cs b/Content.Server/Objectives/Conditions/KillPersonCondition.cs index a1025ab256..0c243e217a 100644 --- a/Content.Server/Objectives/Conditions/KillPersonCondition.cs +++ b/Content.Server/Objectives/Conditions/KillPersonCondition.cs @@ -71,7 +71,7 @@ namespace Content.Server.Objectives.Conditions return 1f; // if evac is still here and target hasn't boarded, show 50% to give you an indicator that you are doing good - return emergencyShuttle.EmergencyShuttleArrived ? 0f : 0.5f; + return emergencyShuttle.EmergencyShuttleArrived ? 0.5f : 0f; } }