mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
Fixes a bunch of bools missed in #11100
This commit is contained in:
@@ -206,14 +206,14 @@ So, hopefully this is helpful if any more icons are to be added/changed/wonderin
|
||||
if(0)
|
||||
if(O.is_wrench())
|
||||
playsound(src, O.usesound, 75, 1)
|
||||
src.anchored = 1
|
||||
src.anchored = TRUE
|
||||
user.visible_message("[user.name] secures the [src.name] to the floor.", \
|
||||
"You secure the external bolts.")
|
||||
temp_state++
|
||||
if(1)
|
||||
if(O.is_wrench())
|
||||
playsound(src, O.usesound, 75, 1)
|
||||
src.anchored = 0
|
||||
src.anchored = FALSE
|
||||
user.visible_message("[user.name] detaches the [src.name] from the floor.", \
|
||||
"You remove the external bolts.")
|
||||
temp_state--
|
||||
@@ -340,14 +340,14 @@ So, hopefully this is helpful if any more icons are to be added/changed/wonderin
|
||||
if(0)
|
||||
if(O.is_wrench())
|
||||
playsound(src, O.usesound, 75, 1)
|
||||
src.anchored = 1
|
||||
src.anchored = TRUE
|
||||
user.visible_message("[user.name] secures the [src.name] to the floor.", \
|
||||
"You secure the external bolts.")
|
||||
temp_state++
|
||||
if(1)
|
||||
if(O.is_wrench())
|
||||
playsound(src, O.usesound, 75, 1)
|
||||
src.anchored = 0
|
||||
src.anchored = FALSE
|
||||
user.visible_message("[user.name] detaches the [src.name] from the floor.", \
|
||||
"You remove the external bolts.")
|
||||
temp_state--
|
||||
|
||||
Reference in New Issue
Block a user