menu swapper: add contract for farming guildmaster Jane

This commit is contained in:
gregg1494
2019-03-17 22:04:46 -05:00
committed by Adam
parent 11993150b3
commit be98ced0f5
2 changed files with 15 additions and 0 deletions

View File

@@ -92,6 +92,16 @@ public interface MenuEntrySwapperConfig extends Config
return false;
}
@ConfigItem(
keyName = "swapContract",
name = "Contract",
description = "Swap Talk-to with Contract on Guildmaster Jane"
)
default boolean swapContract()
{
return true;
}
@ConfigItem(
keyName = "swapChase",
name = "Chase",

View File

@@ -388,6 +388,11 @@ public class MenuEntrySwapperPlugin extends Plugin
swap("bank", option, target, true);
}
if (config.swapContract())
{
swap("contract", option, target, true);
}
if (config.swapExchange())
{
swap("exchange", option, target, true);