Prototype/MapGenPresets: Difference between revisions
Jump to navigation
Jump to search
(Added prototype type to page) |
(remove ambiguous `default`) |
||
Line 21: | Line 21: | ||
Example: | Example: | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua">somepreset = | ||
{ | { | ||
default = true, | default = true, | ||
order = "a" | order = "a" | ||
},</syntaxhighlight> | },</syntaxhighlight> |
Revision as of 20:28, 20 April 2019
Basics
Prototype type: map-gen-presets
The available map gen presets.
Mandatory properties
type
Type: Types/string
Must be "map-gen-presets".
name
Type: Types/string
Name of the map-gen-presets. Must be "default" since only one instances of this prototype can be defined.
the name of a preset
Type: Types/MapGenPreset
Example:
somepreset =
{
default = true,
order = "a"
},