pvptools: fix checkstyle

This commit is contained in:
7ate9
2019-06-11 23:15:00 -04:00
parent 732223e2ee
commit 5f0424c9cd

View File

@@ -73,11 +73,11 @@ public interface PvpToolsConfig extends Config
} }
@ConfigItem( @ConfigItem(
keyName = "hideAttack", keyName = "hideAttack",
name = "Hide attack", name = "Hide attack",
description = "Hides the attack option for clanmates, friends, or both", description = "Hides the attack option for clanmates, friends, or both",
position = 5, position = 5,
group = "Right-Click Attack Options" group = "Right-Click Attack Options"
) )
default boolean hideAttack() default boolean hideAttack()
{ {
@@ -85,13 +85,13 @@ public interface PvpToolsConfig extends Config
} }
@ConfigItem( @ConfigItem(
keyName = "hideAttackMode", keyName = "hideAttackMode",
name = "Mode", name = "Mode",
description = "", description = "",
position = 6, position = 6,
group = "Right-Click Attack Options", group = "Right-Click Attack Options",
hidden = true, hidden = true,
unhide = "hideAttack" unhide = "hideAttack"
) )
default AttackMode hideAttackMode() default AttackMode hideAttackMode()
{ {
@@ -99,11 +99,11 @@ public interface PvpToolsConfig extends Config
} }
@ConfigItem( @ConfigItem(
keyName = "hideCast", keyName = "hideCast",
name = "Hide cast", name = "Hide cast",
description = "Hides the cast option for clanmates, friends, or both", description = "Hides the cast option for clanmates, friends, or both",
position = 7, position = 7,
group = "Right-Click Attack Options" group = "Right-Click Attack Options"
) )
default boolean hideCast() default boolean hideCast()
{ {
@@ -111,13 +111,13 @@ public interface PvpToolsConfig extends Config
} }
@ConfigItem( @ConfigItem(
keyName = "hideCastMode", keyName = "hideCastMode",
name = "Mode", name = "Mode",
description = "", description = "",
position = 8, position = 8,
group = "Right-Click Attack Options", group = "Right-Click Attack Options",
hidden = true, hidden = true,
unhide = "hideCast" unhide = "hideCast"
) )
default AttackMode hideCastMode() default AttackMode hideCastMode()
{ {
@@ -125,13 +125,13 @@ public interface PvpToolsConfig extends Config
} }
@ConfigItem( @ConfigItem(
keyName = "hideCastIgnored", keyName = "hideCastIgnored",
name = "Ignored spells", name = "Ignored spells",
description = "Spells that should not be hidden from being cast, separated by a comma", description = "Spells that should not be hidden from being cast, separated by a comma",
position = 9, position = 9,
group = "Right-Click Attack Options", group = "Right-Click Attack Options",
hidden = true, hidden = true,
unhide = "hideCast" unhide = "hideCast"
) )
default String hideCastIgnored() default String hideCastIgnored()
{ {