Fixes #11489, fixes labels as well

This commit is contained in:
Datraen
2015-11-20 19:37:00 -05:00
parent a79a8746e0
commit 301f7f5c8d

View File

@@ -344,7 +344,7 @@
if(!usr.canmove || usr.stat || usr.restrained())
return
if(ishuman(usr))
if(ishuman(usr) || istype(usr, /mob/living/silicon/robot))
if(labelled)
usr << "You remove the label."
labelled = null
@@ -360,7 +360,7 @@
if(!usr.canmove || usr.stat || usr.restrained())
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)
if(new_light)
tray_light = new_light
@@ -621,7 +621,7 @@
if(!usr.canmove || usr.stat || usr.restrained())
return
if(ishuman(usr))
if(ishuman(usr) || istype(usr, /mob/living/silicon/robot))
close_lid(usr)
return