mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-19 06:32:25 +00:00
Fixes #11489, fixes labels as well
This commit is contained in:
@@ -344,7 +344,7 @@
|
|||||||
|
|
||||||
if(!usr.canmove || usr.stat || usr.restrained())
|
if(!usr.canmove || usr.stat || usr.restrained())
|
||||||
return
|
return
|
||||||
if(ishuman(usr))
|
if(ishuman(usr) || istype(usr, /mob/living/silicon/robot))
|
||||||
if(labelled)
|
if(labelled)
|
||||||
usr << "You remove the label."
|
usr << "You remove the label."
|
||||||
labelled = null
|
labelled = null
|
||||||
@@ -360,7 +360,7 @@
|
|||||||
|
|
||||||
if(!usr.canmove || usr.stat || usr.restrained())
|
if(!usr.canmove || usr.stat || usr.restrained())
|
||||||
return
|
return
|
||||||
if(ishuman(usr))
|
if(ishuman(usr) || istype(usr, /mob/living/silicon/robot))
|
||||||
var/new_light = input("Specify a light level.") as null|anything in list(0,1,2,3,4,5,6,7,8,9,10)
|
var/new_light = input("Specify a light level.") as null|anything in list(0,1,2,3,4,5,6,7,8,9,10)
|
||||||
if(new_light)
|
if(new_light)
|
||||||
tray_light = new_light
|
tray_light = new_light
|
||||||
@@ -621,7 +621,7 @@
|
|||||||
if(!usr.canmove || usr.stat || usr.restrained())
|
if(!usr.canmove || usr.stat || usr.restrained())
|
||||||
return
|
return
|
||||||
|
|
||||||
if(ishuman(usr))
|
if(ishuman(usr) || istype(usr, /mob/living/silicon/robot))
|
||||||
close_lid(usr)
|
close_lid(usr)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user