Files
Fluffy e867030c2e Update MC (#18112)
* sdf

* fsda

* fuck

* fuck2

* toolz

* sdaf

* sdfa

* saf

* sdfa

* sdfa

* sdf

* sdfa

* temp rename

* temp rename

* temp rename

* sdaf

* the pain is immensurable in the land of byond

* the curse of rah

* safd

* sadf

* sadf

* gf

* asf

* fssdfa

* sfd

* sadf

* sfda

* brah

* brah

* it's easier for you to fix this

* ffs

* brah

* brah
2024-01-06 17:03:57 +01:00

22 lines
579 B
Plaintext

/// Logging for mapping
/proc/log_mapping(text, skip_world_log)
#if defined(UNIT_TEST)
LOG_GITHUB_NOTICE("Mapping: [text]")
#else
WRITE_LOG(GLOB.config.logfiles["world_map_error_log"], "MAPPING: [text]")
if(skip_world_log)
return
SEND_TEXT(world.log, "MAPPING: [text]")
#endif
/// Logging for mapping errors
/proc/log_mapping_error(text, skip_world_log)
#if defined(UNIT_TEST)
LOG_GITHUB_ERROR("Mapping: [text]")
#else
WRITE_LOG(GLOB.config.logfiles["world_map_error_log"], "MAPPING: [text]")
if(skip_world_log)
return
SEND_TEXT(world.log, "MAPPING: [text]")
#endif