mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-16 09:34:21 +01:00
Welding masks can now be flipped up to not cover your face via a nice shiny rightclick verb.
NOW STOP FIGHTING OVER THE DAMN GLOBAL VAR AND ADD SPRITES FOR THE FLIPPED-UP MASK. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1227 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -227,6 +227,21 @@ THERMAL GLASSES
|
||||
usr << "Its vital tracker and tracking beacon appear to be enabled."
|
||||
|
||||
|
||||
/obj/item/clothing/head/helmet/welding/verb/toggle()
|
||||
set name = "Adjust welding mask"
|
||||
if(src.up)
|
||||
src.up = !src.up
|
||||
src.see_face = !src.see_face
|
||||
src.flags |= HEADCOVERSEYES
|
||||
icon_state = "welding"
|
||||
usr << "You flip the mask down to protect your eyes."
|
||||
else
|
||||
src.up = !src.up
|
||||
src.see_face = !src.see_face
|
||||
src.flags &= ~HEADCOVERSEYES
|
||||
icon_state = "weldingup"
|
||||
usr << "You push the mask up out of your face."
|
||||
|
||||
/obj/item/clothing/shoes/magboots/verb/toggle()
|
||||
set name = "Toggle Magboots"
|
||||
if(src.magpulse)
|
||||
|
||||
Reference in New Issue
Block a user