diff --git a/code/game/gamemodes/cult/cult.dm b/code/game/gamemodes/cult/cult.dm
index a4b5dc06850..dbbaa637df7 100644
--- a/code/game/gamemodes/cult/cult.dm
+++ b/code/game/gamemodes/cult/cult.dm
@@ -213,7 +213,7 @@ GLOBAL_LIST_EMPTY(all_cults)
cult_risen = TRUE
for(var/datum/mind/M in cult)
if(!M.current || !ishuman(M))
- return
+ continue
SEND_SOUND(M.current, 'sound/hallucinations/i_see_you2.ogg')
to_chat(M.current, "The veil weakens as your cult grows, your eyes begin to glow...")
addtimer(CALLBACK(src, .proc/rise, M.current), 20 SECONDS)
@@ -222,7 +222,7 @@ GLOBAL_LIST_EMPTY(all_cults)
cult_ascendant = TRUE
for(var/datum/mind/M in cult)
if(!M.current || !ishuman(M))
- return
+ continue
SEND_SOUND(M.current, 'sound/hallucinations/im_here1.ogg')
to_chat(M.current, "Your cult is ascendant and the red harvest approaches - you cannot hide your true nature for much longer!")
addtimer(CALLBACK(src, .proc/ascend, M.current), 20 SECONDS)