[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:
CHOMPStation2StaffMirrorBot
2025-02-25 04:41:00 -07:00
committed by GitHub
parent 16f75a5cf1
commit 5b52365bd9
2 changed files with 6 additions and 0 deletions

View File

@@ -27,7 +27,9 @@
if (CELL_ALIVE(map[tmp_cell]))
ore_turfs += tmp_cell
#ifdef TESTING
testing("ASGEN: Found [ore_turfs.len] ore turfs.")
#endif
var/ore_count = round(map.len/20)
var/door_count = 0
var/empty_count = 0
@@ -46,8 +48,10 @@
empty_count += 1
ore_count--
#ifdef TESTING
testing("ASGEN: Set [door_count] turfs to random minerals.")
testing("ASGEN: Set [empty_count] turfs to high-chance random minerals.")
#endif
return 1
/datum/random_map/automata/cave_system/apply_to_turf(var/x,var/y)