mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
Co-authored-by: Changelogs <action@github.com> Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: Kashargul <KashL@t-online.de>
33 lines
915 B
Plaintext
33 lines
915 B
Plaintext
/turf/unsimulated
|
|
name = "command"
|
|
oxygen = MOLES_O2STANDARD
|
|
nitrogen = MOLES_N2STANDARD
|
|
var/skip_init = TRUE // Don't call down the chain, apparently for performance when loading maps at runtime.
|
|
flags = TURF_ACID_IMMUNE
|
|
|
|
/turf/unsimulated/Initialize(mapload)
|
|
if(skip_init)
|
|
flags |= ATOM_INITIALIZED //CHOMPEdit
|
|
return INITIALIZE_HINT_NORMAL
|
|
. = ..()
|
|
|
|
//VOREStation Add
|
|
/turf/unsimulated/fake_space
|
|
name = "\proper space"
|
|
icon = 'icons/turf/space.dmi'
|
|
icon_state = "0"
|
|
dynamic_lighting = FALSE
|
|
//initialized = FALSE CHOMP Removal (what the fuck)
|
|
|
|
/turf/unsimulated/fake_space/Initialize(mapload)
|
|
. = ..()
|
|
icon_state = "[((x + y) ^ ~(x * y) + z) % 25]"
|
|
//VOREStation Add End
|
|
|
|
// Better nip this just in case.
|
|
/turf/unsimulated/rcd_values(mob/living/user, obj/item/rcd/the_rcd, passed_mode)
|
|
return FALSE
|
|
|
|
/turf/unsimulated/rcd_act(mob/living/user, obj/item/rcd/the_rcd, passed_mode)
|
|
return FALSE
|