Update MouseHighlightConfig.java

checkstyle fix
This commit is contained in:
Kyleeld
2019-05-31 09:11:54 +01:00
committed by GitHub
parent 2fc3ffa279
commit e0976f4bf2

View File

@@ -64,13 +64,23 @@ public interface MouseHighlightConfig extends Config
return true; return true;
} }
@ConfigItem(position = 3, keyName = "hideSpells", name = "Spellbook", description = "Hides vanilla client tooltips in the spellbook") @ConfigItem(
position = 3,
keyName = "hideSpells",
name = "Spellbook",
description = "Hides vanilla client tooltips in the spellbook"
)
default boolean shouldHideSpells() default boolean shouldHideSpells()
{ {
return false; return false;
} }
@ConfigItem(position = 4, keyName = "hideCombat", name = "Combat", description = "Hides vanilla client tooltips in the combat menu") @ConfigItem(
position = 4,
keyName = "hideCombat",
name = "Combat",
description = "Hides vanilla client tooltips in the combat menu"
)
default boolean shouldHideCombat() default boolean shouldHideCombat()
{ {
return false; return false;