Bay12 examine overhaul.

This commit overhauls the examine system to baystation's latest system,
including a more efficient verb approach, and a new status panel tab,
which shows more information for pre-defined objects.
This commit is contained in:
Tigercat2000
2015-09-14 11:51:40 -07:00
parent cfbbf104ac
commit 0603f73232
146 changed files with 1381 additions and 1090 deletions
+4 -4
View File
@@ -21,12 +21,12 @@
icon_state_off = "switch-up"
/obj/structure/powerswitch/examine()
..()
/obj/structure/powerswitch/examine(mob/user)
..(user)
if(on)
usr << "The switch is in the on position"
user << "The switch is in the on position"
else
usr << "The switch is in the off position"
user << "The switch is in the off position"
/obj/structure/powerswitch/attack_ai(mob/user)
user << "\red You're an AI. This is a manual switch. It's not going to work."