mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 02:09:41 +00:00
Convert some bools to TRUE/FALSE instead of 1/0.
This commit is contained in:
@@ -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>")
|
||||
|
||||
Reference in New Issue
Block a user