mirror of
https://github.com/cybergirlvannie/OpenSS13.git
synced 2026-08-22 04:06:17 +01:00
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:
+7
-6
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user