Convert some bools to TRUE/FALSE instead of 1/0.

This commit is contained in:
Chompstation Bot
2021-07-16 17:44:40 +00:00
parent 1be5570337
commit 481c0e314e
523 changed files with 6976 additions and 1284 deletions

View File

@@ -5,7 +5,7 @@
icon_state = "cutout_basic"
maxhealth = 15 //Weaker than normal barricade
anchored = 0
anchored = FALSE
var/fake_name = "unknown"
var/fake_desc = "You have to be closer to examine this creature."
@@ -36,7 +36,7 @@
return
toppled = TRUE
icon_state = "cutout_pushed_over"
density = 0
density = FALSE
name = initial(name)
desc = initial(desc)
visible_message("<span class='warning'>[src] topples over!</span>")
@@ -46,7 +46,7 @@
return
toppled = FALSE
icon_state = initial(icon_state)
density = 1
density = TRUE
name = fake_name
desc = fake_desc
visible_message("<span class='warning'>[src] is uprighted to their proper position.</span>")