Indent fix v2

Hope I fixed all indents now, oops!
This commit is contained in:
GeChallengeM
2019-07-10 02:06:25 +02:00
parent bc36f8204d
commit 4bc7c79a6f

View File

@@ -47,10 +47,10 @@ public interface NpcStatusConfig extends Config
} }
@ConfigItem( @ConfigItem(
keyName = "CustomAttSpeedEnabled", keyName = "CustomAttSpeedEnabled",
name = "Custom attack speed", name = "Custom attack speed",
description = "Use this if the timer is wrong.", description = "Use this if the timer is wrong.",
position = 2 position = 2
) )
default boolean isCustomAttSpeed() default boolean isCustomAttSpeed()
{ {
@@ -58,15 +58,15 @@ public interface NpcStatusConfig extends Config
} }
@Range( @Range(
min = 1 min = 1
) )
@ConfigItem( @ConfigItem(
keyName = "CustomAttSpeed", keyName = "CustomAttSpeed",
name = "Custom NPC att speed", name = "Custom NPC att speed",
description = "The attack speed of the NPC (amount of ticks between their attacks).", description = "The attack speed of the NPC (amount of ticks between their attacks).",
position = 3, position = 3,
hidden = true, hidden = true,
unhide = "CustomAttSpeedEnabled" unhide = "CustomAttSpeedEnabled"
) )
default int getCustomAttSpeed() default int getCustomAttSpeed()
{ {