diff options
author | Lorenz <ESs95s3P5z8Pheb> | 2022-07-08 23:55:40 +0200 |
---|---|---|
committer | Lorenz <ESs95s3P5z8Pheb> | 2022-07-08 23:55:40 +0200 |
commit | 89c39cfe427064d69a9af767dfe9d2951cc6bd1b (patch) | |
tree | a1da6af1360c25018aa35b91d5fe4afcd0e9167c /src/main/java/at | |
parent | 636fe64d36f46ecb428a619a6417fc99336cd6f3 (diff) | |
download | skyhanni-89c39cfe427064d69a9af767dfe9d2951cc6bd1b.tar.gz skyhanni-89c39cfe427064d69a9af767dfe9d2951cc6bd1b.tar.bz2 skyhanni-89c39cfe427064d69a9af767dfe9d2951cc6bd1b.zip |
fixed typos
Diffstat (limited to 'src/main/java/at')
-rw-r--r-- | src/main/java/at/lorenz/mod/LorenzMod.java | 2 | ||||
-rw-r--r-- | src/main/java/at/lorenz/mod/config/Features.java | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/main/java/at/lorenz/mod/LorenzMod.java b/src/main/java/at/lorenz/mod/LorenzMod.java index 41a90a13e..8f167e8c9 100644 --- a/src/main/java/at/lorenz/mod/LorenzMod.java +++ b/src/main/java/at/lorenz/mod/LorenzMod.java @@ -28,7 +28,7 @@ import net.minecraftforge.fml.common.gameevent.TickEvent; public class LorenzMod { public static final String MODID = "lorenzmod"; - public static final String VERSION = "0.2.1"; + public static final String VERSION = "0.3"; // public static SBHConfig config; //TODO delete diff --git a/src/main/java/at/lorenz/mod/config/Features.java b/src/main/java/at/lorenz/mod/config/Features.java index aeaf56e6f..0bbac1e4a 100644 --- a/src/main/java/at/lorenz/mod/config/Features.java +++ b/src/main/java/at/lorenz/mod/config/Features.java @@ -80,12 +80,12 @@ public class Features { public static class Dungeon { @Expose - @ConfigOption(name = "Hide Dungeon Messages", desc = "Hides annoyung dungeon messages.") + @ConfigOption(name = "Hide Messages", desc = "Hide annoying dungeon messages.") @ConfigEditorBoolean public boolean hideAnnoyingMessages = false; @Expose - @ConfigOption(name = "Highlight Clicked Blocks", desc = "Highlight blocks in dungeon when clicked: Lever, Chest, Wither Essence") + @ConfigOption(name = "Clicked Blocks", desc = "Highlight the following blocks when clicked in dungeon: Lever, Chest, Wither Essence") @ConfigEditorBoolean public boolean highlightClickedBlocks = false; } @@ -113,7 +113,7 @@ public class Features { public boolean displayDungeonHeadFloor = false; @Expose - @ConfigOption(name = "New Year Cake Number", desc = "Shows the Number of the Year of New Year Cakes.") + @ConfigOption(name = "New Year Cake", desc = "Shows the Number of the Year of New Year Cakes.") @ConfigEditorBoolean public boolean displayNewYearCakeNumber = false; @@ -154,7 +154,7 @@ public class Features { public Position petDisplayPos = new Position(10, 10, false, true); @Expose - @ConfigOption(name = "Exp Bottles", desc = "Hides all the Exp bottles on the ground.") + @ConfigOption(name = "Exp Bottles", desc = "Hides all the experience bottles laying on the ground.") @ConfigEditorBoolean public boolean hideExpBottles = false; } |