From ddd67c6034da86a0fb5dccf2a17bbd2bdf801632 Mon Sep 17 00:00:00 2001 From: Electroblob77 <35599699+Electroblob77@users.noreply.github.com> Date: Thu, 2 Jul 2020 23:47:44 +0100 Subject: [PATCH] Defaults should be true --- src/main/java/electroblob/wizardry/Settings.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/electroblob/wizardry/Settings.java b/src/main/java/electroblob/wizardry/Settings.java index d4e53a41..3f3b1315 100644 --- a/src/main/java/electroblob/wizardry/Settings.java +++ b/src/main/java/electroblob/wizardry/Settings.java @@ -970,14 +970,14 @@ public final class Settings { reverseScrollDirection = property.getBoolean(); propOrder.add(property.getName()); - property = config.get(CLIENT_CATEGORY, "showSpellHUD", false, "Whether to show the spell HUD in the corner of the screen when holding a wand."); + property = config.get(CLIENT_CATEGORY, "showSpellHUD", true, "Whether to show the spell HUD in the corner of the screen when holding a wand."); property.setLanguageKey("config." + Wizardry.MODID + ".show_spell_hud"); property.setRequiresWorldRestart(false); Wizardry.proxy.setToNamedBooleanEntry(property); showSpellHUD = property.getBoolean(); propOrder.add(property.getName()); - property = config.get(CLIENT_CATEGORY, "showChargeMeter", false, "Whether to show the spell charge-up meter around the crosshairs when charging up a spell."); + property = config.get(CLIENT_CATEGORY, "showChargeMeter", true, "Whether to show the spell charge-up meter around the crosshairs when charging up a spell."); property.setLanguageKey("config." + Wizardry.MODID + ".show_charge_meter"); property.setRequiresWorldRestart(false); Wizardry.proxy.setToNamedBooleanEntry(property);