mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-28 14:37:04 +01:00
Fixes cult revive runes always giving up a persons body (#20833)
* Fixes cult revive runes always giving up a persons body * charlies review
This commit is contained in:
@@ -622,7 +622,7 @@ structure_check() searches for nearby cultist structures required for the invoca
|
||||
if(mob_to_revive.ghost_can_reenter())
|
||||
mob_to_revive.grab_ghost()
|
||||
|
||||
if(!mob_to_revive.get_ghost() || mob_to_revive.client && mob_to_revive.client.is_afk())
|
||||
if(!mob_to_revive.get_ghost() && (!mob_to_revive.client || mob_to_revive.client.is_afk()))
|
||||
set waitfor = FALSE
|
||||
to_chat(user, "<span class='cult'>[mob_to_revive] was revived, but their mind is lost! Seeking a lost soul to replace it.</span>")
|
||||
var/list/mob/dead/observer/candidates = SSghost_spawns.poll_candidates("Would you like to play as a revived Cultist?", ROLE_CULTIST, TRUE, poll_time = 20 SECONDS, source = /obj/item/melee/cultblade/dagger)
|
||||
|
||||
Reference in New Issue
Block a user