Update MenuEntrySwapperConfig.java

This commit is contained in:
Jonathan
2019-04-24 19:27:13 -06:00
committed by GitHub
parent b5b1757688
commit 4ba20f55bf

View File

@@ -282,14 +282,24 @@ public interface MenuEntrySwapperConfig extends Config
{ {
return true; return true;
} }
@ConfigItem(
keyName = "rockCake",
name = "Rock Cake Guzzle",
description = "Enables Left Click Guzzle to Rock Cake"
)
default boolean rockCake()
{
return false;
}
@ConfigItem( @ConfigItem(
keyName = "swapRogueschests", keyName = "swapRogueschests",
name = "Rogueschests", name = "Rogueschests",
description = "Swap Rogueschests from open to Search for traps" description = "Swap Rogueschests from open to Search for traps"
) )
default boolean swapRogueschests() default boolean swapRogueschests()
{ {
return true; return true;
} }
} }