From 08c328d48eb630db002e29eb666edc88610828fa Mon Sep 17 00:00:00 2001
From: Contrabang <91113370+Contrabang@users.noreply.github.com>
Date: Mon, 18 Mar 2024 22:12:07 -0400
Subject: [PATCH] okay one last time (#24681)
---
code/game/gamemodes/cult/cult_mode.dm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/code/game/gamemodes/cult/cult_mode.dm b/code/game/gamemodes/cult/cult_mode.dm
index fe6bb470558..3e5c5145c37 100644
--- a/code/game/gamemodes/cult/cult_mode.dm
+++ b/code/game/gamemodes/cult/cult_mode.dm
@@ -44,10 +44,10 @@
..()
/datum/game_mode/cult/declare_completion()
- if(cult_team.sacrifices_required == NARSIE_HAS_RISEN)
+ if(cult_team.cult_status == NARSIE_HAS_RISEN)
SSticker.mode_result = "cult win - cult win"
to_chat(world, " The cult wins! It has succeeded in summoning [GET_CULT_DATA(entity_name, "their god")]!")
- else if(cult_team.sacrifices_required == NARSIE_HAS_FALLEN)
+ else if(cult_team.cult_status == NARSIE_HAS_FALLEN)
SSticker.mode_result = "cult draw - narsie died, nobody wins"
to_chat(world, " Nobody wins! [GET_CULT_DATA(entity_name, "the cult god")] was summoned, but banished!")
else