Update MouseHighlightConfig.java
checkstyle fix
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user