mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-28 07:38:05 +01:00
515 Compat (#17465)
* ONLY SKYRAT CHANGES * ACTUALLY SKYRAT CHANGES * yolo, revert later * Update alternate_byond_versions.txt Co-authored-by: AnturK <AnturK@users.noreply.github.com>
This commit is contained in:
@@ -107,7 +107,7 @@
|
||||
if(!modules || !modules.len)
|
||||
return
|
||||
for(var/datum/map_generator_module/mod in modules)
|
||||
INVOKE_ASYNC(mod, /datum/map_generator_module.proc/generate)
|
||||
INVOKE_ASYNC(mod, TYPE_PROC_REF(/datum/map_generator_module, generate))
|
||||
|
||||
|
||||
//Requests the mapGeneratorModule(s) to (re)generate this one turf
|
||||
@@ -118,7 +118,7 @@
|
||||
if(!modules || !modules.len)
|
||||
return
|
||||
for(var/datum/map_generator_module/mod in modules)
|
||||
INVOKE_ASYNC(mod, /datum/map_generator_module.proc/place, T)
|
||||
INVOKE_ASYNC(mod, TYPE_PROC_REF(/datum/map_generator_module, place), T)
|
||||
|
||||
|
||||
//Replaces all paths in the module list with actual module datums
|
||||
|
||||
Reference in New Issue
Block a user