Fixes a bunch of bools missed in #11100

This commit is contained in:
Chompstation Bot
2021-07-16 21:12:20 +00:00
parent 1be5570337
commit d0d23ed393
93 changed files with 3291 additions and 195 deletions

View File

@@ -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--