mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 11:37:40 +01:00
Everything else through the door (#19358)
This commit is contained in:
@@ -718,7 +718,7 @@ GLOBAL_LIST_EMPTY(multiverse)
|
||||
if(unlimited) //no point, the list isn't used.
|
||||
return
|
||||
for(var/X in spooky_scaries)
|
||||
if(!istype(X, /mob/living/carbon/human))
|
||||
if(!ishuman(X))
|
||||
spooky_scaries.Remove(X)
|
||||
continue
|
||||
var/mob/living/carbon/human/H = X
|
||||
|
||||
@@ -35,13 +35,13 @@
|
||||
for(var/datum/mind/wizard in wizards)
|
||||
if(isnull(wizard.current))
|
||||
continue
|
||||
if(!istype(wizard.current,/mob/living/carbon))
|
||||
if(!iscarbon(wizard.current))
|
||||
if(istype(get_area(wizard.current), /area/wizard_station)) // We don't want people camping other wizards
|
||||
to_chat(wizard.current, "<span class='warning'>If there aren't any admins on and another wizard is camping you in the wizard lair, report them on the forums</span>")
|
||||
message_admins("[wizard.current] was transformed in the wizard lair, another wizard is likely camping")
|
||||
end_squabble(get_area(wizard.current))
|
||||
continue
|
||||
if(istype(wizard.current,/mob/living/carbon/brain))
|
||||
if(isbrain(wizard.current))
|
||||
if(istype(get_area(wizard.current), /area/wizard_station)) // We don't want people camping other wizards
|
||||
to_chat(wizard.current, "<span class='warning'>If there aren't any admins on and another wizard is camping you in the wizard lair, report them on the forums</span>")
|
||||
message_admins("[wizard.current] was brainified in the wizard lair, another wizard is likely camping")
|
||||
|
||||
@@ -1050,7 +1050,7 @@
|
||||
desc = "This book is more horse than your mind has room for."
|
||||
|
||||
/obj/item/spellbook/oneuse/horsemask/recoil(mob/living/carbon/user as mob)
|
||||
if(istype(user, /mob/living/carbon/human))
|
||||
if(ishuman(user))
|
||||
to_chat(user, "<font size='15' color='red'><b>HOR-SIE HAS RISEN</b></font>")
|
||||
var/obj/item/clothing/mask/horsehead/magichead = new /obj/item/clothing/mask/horsehead
|
||||
magichead.flags |= NODROP | DROPDEL //curses!
|
||||
|
||||
@@ -164,7 +164,7 @@
|
||||
|
||||
// Wizards
|
||||
for(var/datum/mind/wizard in wizards)
|
||||
if(!istype(wizard.current,/mob/living/carbon))
|
||||
if(!iscarbon(wizard.current))
|
||||
continue
|
||||
if(wizard.current.stat==DEAD)
|
||||
continue
|
||||
@@ -175,7 +175,7 @@
|
||||
// Apprentices
|
||||
if(!wizards_alive)
|
||||
for(var/datum/mind/apprentice in apprentices)
|
||||
if(!istype(apprentice.current,/mob/living/carbon))
|
||||
if(!iscarbon(apprentice.current))
|
||||
continue
|
||||
if(apprentice.current.stat==DEAD)
|
||||
continue
|
||||
|
||||
Reference in New Issue
Block a user