diff options
| author | Lorenz <ESs95s3P5z8Pheb> | 2022-07-14 00:39:05 +0200 |
|---|---|---|
| committer | Lorenz <ESs95s3P5z8Pheb> | 2022-07-14 00:39:05 +0200 |
| commit | 976aaeae86426e1e46a38695c099c8bc0159b6a5 (patch) | |
| tree | 1fc1a1bfff6b9787f258afe4f21dd724494ce54c /src/main/java/at/lorenz/mod/config/Features.java | |
| parent | 8eefe8e5e575ed62eda9e6926b9212999541f34f (diff) | |
| download | SkyHanni-976aaeae86426e1e46a38695c099c8bc0159b6a5.tar.gz SkyHanni-976aaeae86426e1e46a38695c099c8bc0159b6a5.tar.bz2 SkyHanni-976aaeae86426e1e46a38695c099c8bc0159b6a5.zip | |
add clean dungeon end feature
Diffstat (limited to 'src/main/java/at/lorenz/mod/config/Features.java')
| -rw-r--r-- | src/main/java/at/lorenz/mod/config/Features.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/at/lorenz/mod/config/Features.java b/src/main/java/at/lorenz/mod/config/Features.java index 2c04e9238..20b9ecad8 100644 --- a/src/main/java/at/lorenz/mod/config/Features.java +++ b/src/main/java/at/lorenz/mod/config/Features.java @@ -151,6 +151,11 @@ public class Features { @ConfigOption(name = "Death Counter Position", desc = "") @ConfigEditorButton(runnableId = "dungeonDeathCounter", buttonText = "Edit") public Position deathCounterDisplay = new Position(10, 10, false, true); + + @Expose + @ConfigOption(name = "Clean End", desc = "Hide entities and particles after the boss in Floor 1 - 6 has died.") + @ConfigEditorBoolean + public boolean cleanEnd = false; } public static class Items { |
