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

@@ -113,7 +113,7 @@
if(do_after(user, 40 * W.toolspeed))
if(!src) return
to_chat(user,"<span class='notice'>You've secured the windoor assembly!</span>")
src.anchored = 1
src.anchored = TRUE
step = 0
//Unwrenching an unsecure assembly un-anchors it. Step 4 undone
@@ -124,7 +124,7 @@
if(do_after(user, 40 * W.toolspeed))
if(!src) return
to_chat(user,"<span class='notice'>You've unsecured the windoor assembly!</span>")
src.anchored = 0
src.anchored = FALSE
step = null
//Adding cable to the assembly. Step 5 complete.
@@ -212,7 +212,7 @@
windoor.icon_state = "rightsecureopen"
windoor.base_state = "rightsecure"
windoor.set_dir(src.dir)
windoor.density = 0
windoor.density = FALSE
if(created_name)
windoor.name = created_name
spawn(0)
@@ -234,7 +234,7 @@
windoor.icon_state = "rightopen"
windoor.base_state = "right"
windoor.set_dir(src.dir)
windoor.density = 0
windoor.density = FALSE
if(created_name)
windoor.name = created_name
spawn(0)