26 lines
912 B
TOML
26 lines
912 B
TOML
|
|
#All configuration items related to the core gameplay
|
|
[gameplay]
|
|
#Max amount of undos saved. A higher number requires more memory.
|
|
#Range: 0 ~ 100
|
|
maxCachedChanges = 10
|
|
#Should player-made schematics be allowed?
|
|
allowPlayerSchematics = true
|
|
#Should the default schematics be ignored (from the jar)?
|
|
ignoreSchematicsFromJar = false
|
|
#Currently supports 'default', 'inwardcircle', 'hilbert', 'random' and 'inwardcircleheight1' to 'inwardcircleheight4'
|
|
iteratorType = "default"
|
|
#Max world operations per tick (max blocks to place, remove, or replace).
|
|
#Range: 0 ~ 100000
|
|
maxOperationsPerTick = 1000
|
|
#Max amount of blocks checked by a possible worker.
|
|
#Range: 0 ~ 100000
|
|
maxBlocksChecked = 1000
|
|
#Max amount of schematics to be cached on the server.
|
|
#Range: 0 ~ 100000
|
|
maxCachedSchematics = 100
|
|
#structurize.config.schematicblocklimit.comment
|
|
#Range: 1000 ~ 1000000
|
|
schematicBlockLimit = 100000
|
|
|