Skip to content

Commit

Permalink
narsie summon don`t convert all cultists (#13)
Browse files Browse the repository at this point in the history
* narsie summon don`t convert all cultists

using previously unused code, nar-nar rewards cultists by devouring them manualy, why she shouldn`t.

* Update narsie.dm
  • Loading branch information
MrCastmer committed Feb 5, 2024
1 parent 0b4361a commit 7adfe60
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion code/modules/power/singularity/narsie.dm
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,12 @@
var/datum/objective/eldergod/summon_objective = locate() in T.objectives
if(summon_objective)
summon_objective.summoned = TRUE
/*
for(var/datum/mind/cult_mind in SSticker.mode.cult)
if(isliving(cult_mind.current))
var/mob/living/L = cult_mind.current
L.narsie_act()
L.narsie_act()
*/
for(var/mob/living/player in GLOB.player_list)
if(player.stat != DEAD && player.loc && is_station_level(player.loc.z) && !iscultist(player) && !isanimal(player))
souls_needed[player] = TRUE
Expand Down

0 comments on commit 7adfe60

Please sign in to comment.