mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
Fixed #2706.
This commit is contained in:
@@ -107,7 +107,7 @@ var/list/sacrificed = list()
|
|||||||
M.visible_message("\red [M] writhes in pain as the markings below him glow a bloody red.", \
|
M.visible_message("\red [M] writhes in pain as the markings below him glow a bloody red.", \
|
||||||
"\red AAAAAAHHHH!.", \
|
"\red AAAAAAHHHH!.", \
|
||||||
"\red You hear an anguished scream.")
|
"\red You hear an anguished scream.")
|
||||||
if(is_convertable_to_cult(M.mind))
|
if(is_convertable_to_cult(M.mind) && !jobban_isbanned(M, "cultist"))//putting jobban check here because is_convertable uses mind as argument
|
||||||
ticker.mode.add_cultist(M.mind)
|
ticker.mode.add_cultist(M.mind)
|
||||||
M.mind.special_role = "Cultist"
|
M.mind.special_role = "Cultist"
|
||||||
M << "<font color=\"purple\"><b><i>Your blood pulses. Your head throbs. The world goes red. All at once you are aware of a horrible, horrible truth. The veil of reality has been ripped away and in the festering wound left behind something sinister takes root.</b></i></font>"
|
M << "<font color=\"purple\"><b><i>Your blood pulses. Your head throbs. The world goes red. All at once you are aware of a horrible, horrible truth. The veil of reality has been ripped away and in the festering wound left behind something sinister takes root.</b></i></font>"
|
||||||
@@ -370,6 +370,8 @@ var/list/sacrificed = list()
|
|||||||
break
|
break
|
||||||
if(!ghost)
|
if(!ghost)
|
||||||
return this_rune.fizzle()
|
return this_rune.fizzle()
|
||||||
|
if(jobban_isbanned(ghost, "cultist"))
|
||||||
|
return this_rune.fizzle()
|
||||||
|
|
||||||
usr.say("Gal'h'rfikk harfrandid mud[pick("'","`")]gib!")
|
usr.say("Gal'h'rfikk harfrandid mud[pick("'","`")]gib!")
|
||||||
var/mob/living/carbon/human/dummy/D = new(this_rune.loc)
|
var/mob/living/carbon/human/dummy/D = new(this_rune.loc)
|
||||||
|
|||||||
Reference in New Issue
Block a user