mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 02:34:00 +00:00
[MIRROR] some istype to macros (#9802)
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
73486c399b
commit
ed79946ade
@@ -945,7 +945,7 @@
|
||||
set name = "Roll Sleeves"
|
||||
set category = "Object"
|
||||
set src in usr
|
||||
if(!istype(usr, /mob/living))
|
||||
if(!isliving(usr))
|
||||
return
|
||||
if(usr.stat)
|
||||
return
|
||||
@@ -964,7 +964,7 @@
|
||||
set name = "Toggle Shirt Tucking"
|
||||
set category = "Object"
|
||||
set src in usr
|
||||
if(!istype(usr, /mob/living)||usr.stat)
|
||||
if(!isliving(usr)||usr.stat)
|
||||
return
|
||||
|
||||
if(tucked == 0)
|
||||
@@ -979,7 +979,7 @@
|
||||
set name = "Toggle Shirt Buttons"
|
||||
set category = "Object"
|
||||
set src in usr
|
||||
if(!istype(usr, /mob/living)||usr.stat)
|
||||
if(!isliving(usr)||usr.stat)
|
||||
return
|
||||
|
||||
if(buttoned == 0)
|
||||
|
||||
Reference in New Issue
Block a user