Skip to content

Commit

Permalink
Add config comments to structure cleanup options
Browse files Browse the repository at this point in the history
  • Loading branch information
Meldexun committed Nov 5, 2023
1 parent 096e9a0 commit c5c25e1
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,17 @@ public class ConfigMinecraft
@Config.Name("Cleanup Structure Worldgen Files Structures")
public String[] cleanupStructureWorldgenFilesStructures = { "Village", "Mineshaft" };

@Config.Comment("")
@Config.Comment({
"ALWAYS: All structures get always deleted",
"ALWAYS_COMPONENTS_ONLY: All components get always deleted",
"GENERATED: Structures that are fully generated get deleted",
"GENERATED_COMPONENTS: Components that are fully generated and structures that have no components get deleted",
"GENERATED_COMPONENTS_ONLY: Components that are fully generated get deleted",
"DISABLED: Nothing gets deleted" })
@Config.Name("Cleanup Structure Worldgen Files Mode")
public StructureCleanupMode cleanupStructureWorldgenFilesMode = StructureCleanupMode.GENERATED_COMPONENTS_ONLY;

@Config.Comment("")
@Config.Comment("Structure (or structure component) bounding boxes larger than this value on one axis will be ignored.")
@Config.Name("Cleanup Structure Worldgen Files Size Limit")
public int cleanupStructureWorldgenFilesSizeLimit = 1 << 12;

Expand Down

0 comments on commit c5c25e1

Please sign in to comment.