mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
[MIRROR] Disables the default logging of some testing procs (#10224)
Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
16f75a5cf1
commit
5b52365bd9
@@ -68,7 +68,9 @@
|
|||||||
if(!docking_codes)
|
if(!docking_codes)
|
||||||
docking_codes = "[ascii2text(rand(65,90))][ascii2text(rand(65,90))][ascii2text(rand(65,90))][ascii2text(rand(65,90))]"
|
docking_codes = "[ascii2text(rand(65,90))][ascii2text(rand(65,90))][ascii2text(rand(65,90))][ascii2text(rand(65,90))]"
|
||||||
|
|
||||||
|
#ifdef TESTING
|
||||||
testing("Located sector \"[name]\" at [start_x],[start_y], containing Z [english_list(map_z)]")
|
testing("Located sector \"[name]\" at [start_x],[start_y], containing Z [english_list(map_z)]")
|
||||||
|
#endif
|
||||||
|
|
||||||
LAZYADD(SSshuttles.sectors_to_initialize, src) //Queued for further init. Will populate the waypoint lists; waypoints not spawned yet will be added in as they spawn.
|
LAZYADD(SSshuttles.sectors_to_initialize, src) //Queued for further init. Will populate the waypoint lists; waypoints not spawned yet will be added in as they spawn.
|
||||||
SSshuttles.process_init_queues()
|
SSshuttles.process_init_queues()
|
||||||
|
|||||||
@@ -27,7 +27,9 @@
|
|||||||
if (CELL_ALIVE(map[tmp_cell]))
|
if (CELL_ALIVE(map[tmp_cell]))
|
||||||
ore_turfs += tmp_cell
|
ore_turfs += tmp_cell
|
||||||
|
|
||||||
|
#ifdef TESTING
|
||||||
testing("ASGEN: Found [ore_turfs.len] ore turfs.")
|
testing("ASGEN: Found [ore_turfs.len] ore turfs.")
|
||||||
|
#endif
|
||||||
var/ore_count = round(map.len/20)
|
var/ore_count = round(map.len/20)
|
||||||
var/door_count = 0
|
var/door_count = 0
|
||||||
var/empty_count = 0
|
var/empty_count = 0
|
||||||
@@ -46,8 +48,10 @@
|
|||||||
empty_count += 1
|
empty_count += 1
|
||||||
ore_count--
|
ore_count--
|
||||||
|
|
||||||
|
#ifdef TESTING
|
||||||
testing("ASGEN: Set [door_count] turfs to random minerals.")
|
testing("ASGEN: Set [door_count] turfs to random minerals.")
|
||||||
testing("ASGEN: Set [empty_count] turfs to high-chance random minerals.")
|
testing("ASGEN: Set [empty_count] turfs to high-chance random minerals.")
|
||||||
|
#endif
|
||||||
return 1
|
return 1
|
||||||
|
|
||||||
/datum/random_map/automata/cave_system/apply_to_turf(var/x,var/y)
|
/datum/random_map/automata/cave_system/apply_to_turf(var/x,var/y)
|
||||||
|
|||||||
Reference in New Issue
Block a user