menu entry swapper: Add 'help' swap to Arceuus library customers

This commit is contained in:
Shaun Dreclin
2019-11-25 01:22:07 -05:00
parent 5f18b32976
commit 388acc4710
2 changed files with 15 additions and 0 deletions

View File

@@ -182,6 +182,16 @@ public interface MenuEntrySwapperConfig extends Config
return false;
}
@ConfigItem(
keyName = "swapHelp",
name = "Help",
description = "Swap Talk-to with Help on Arceuus library customers"
)
default boolean swapHelp()
{
return true;
}
@ConfigItem(
keyName = "swapHomePortal",
name = "Home",

View File

@@ -396,6 +396,11 @@ public class MenuEntrySwapperPlugin extends Plugin
swap("exchange", option, target, index);
}
if (config.swapHelp())
{
swap("help", option, target, index);
}
if (config.swapDarkMage())
{
swap("repairs", option, target, index);