diff --git a/README.md b/README.md index 68638146..e2ca7b9f 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,15 @@ Feel free to contribute by adding as many fixes as you want # Features +## carpetFixesPreset +Allows you to choose different pre-defined groups of rules to use +* Type: `PresetSettings` +* Default value: `Custom` +* Required options: `Custom`,`Vanilla`,`Backport`,`CrashFix`,`Stability`,`NotBackports`,`All` +* Categories: `CARPETFIXES` +* Additional notes: + * Information about what each preset does can be found in-game by doing `/carpet carpetFixesPreset` + ## chunkRegenFix Fixes Chunk Regen due to StringTag writeUTF() not respecting readUTF() Limits * Type: `boolean` diff --git a/gradle.properties b/gradle.properties index 557586b3..e11b1c38 100644 --- a/gradle.properties +++ b/gradle.properties @@ -10,7 +10,7 @@ org.gradle.jvmargs=-Xmx1G carpet_core_version=1.4.26+v210210 # Mod Properties - mod_version = 0.0.3 + mod_version = 0.0.4 maven_group = carpetfixes archives_base_name = carpetfixes diff --git a/src/main/java/carpetfixes/CarpetFixesSettings.java b/src/main/java/carpetfixes/CarpetFixesSettings.java index 692382e6..75d2d9db 100644 --- a/src/main/java/carpetfixes/CarpetFixesSettings.java +++ b/src/main/java/carpetfixes/CarpetFixesSettings.java @@ -1,10 +1,6 @@ package carpetfixes; -import carpet.settings.ParsedRule; import carpet.settings.Rule; -import carpet.settings.Validator; -import carpetfixes.helpers.RulePresets; -import net.minecraft.server.command.ServerCommandSource; import static carpet.settings.RuleCategory.BUGFIX; import static carpet.settings.RuleCategory.EXPERIMENTAL;