mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
* Update config.txt * ok * Update Lavaland.dmm * Update LavalandGenerator.dm * help * fuck you * yep * fuck these turfs * yeah * Update rust_g.dll * Update dependencies.sh * Update dependencies.sh * thank you merger Co-authored-by: Jamie D <993128+JamieD1@users.noreply.github.com>
13 lines
555 B
Plaintext
13 lines
555 B
Plaintext
///This type is responsible for any map generation behavior that is done in areas, override this to allow for area-specific map generation. This generation is ran by areas in initialize.
|
|
/datum/map_generator
|
|
|
|
///This proc will be ran by areas on Initialize, and provides the areas turfs as argument to allow for generation.
|
|
/datum/map_generator/proc/generate_terrain(list/turfs)
|
|
return
|
|
|
|
/turf/open/genturf
|
|
name = "ungenerated turf"
|
|
desc = "If you see this, and you're not a ghost, yell at coders"
|
|
icon = 'icons/turf/debug.dmi'
|
|
icon_state = "genturf"
|