Fixes for:

Air tank dialog not updating to show 'restore gas flow' when clicking 'stop gas flow'
Being able to knock out, stun, paralyze, etc, the AI
Timers/igniters not igniting when the timer completed: screwdrivering the timer/igniter assembly was not setting status on the igniter. (prox/igniters and remote/igniters did set it)
This commit is contained in:
shadowlord13
2008-05-31 18:25:59 +00:00
parent 32f1af1fc7
commit bbe4fcca82
7 changed files with 1233 additions and 1197 deletions
+7 -6
View File
@@ -621,12 +621,13 @@
return
if (!( istype(W, /obj/item/weapon/screwdriver) ))
return
src.status = !( src.status )
if (src.status)
user.show_message("\blue The timer is now secured!", 1)
else
user.show_message("\blue The timer is now unsecured!", 1)
src.status = !( src.status )
if (src.status)
user.show_message("\blue The timer is now secured! The igniter now works!", 1)
else
user.show_message("\blue The timer is now unsecured! The igniter will not work.", 1)
src.part2.status = src.status
src.add_fingerprint(user)
return