Skip to content

Commit

Permalink
menu entry swapper: swap nets on annette
Browse files Browse the repository at this point in the history
  • Loading branch information
dekvall authored and Adam- committed Mar 17, 2020
1 parent 32b9896 commit 9ac4592
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -421,4 +421,14 @@ default boolean swapEssenceMineTeleport()
{
return false;
}

@ConfigItem(
keyName = "swapNets",
name = "Nets",
description = "Swap Talk-to with Nets on Annette"
)
default boolean swapNets()
{
return true;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,11 @@ private void swapMenuEntry(int index, MenuEntry menuEntry)
swap("help", option, target, index);
}

if (config.swapNets())
{
swap("nets", option, target, index);
}

if (config.swapDarkMage())
{
swap("repairs", option, target, index);
Expand Down

0 comments on commit 9ac4592

Please sign in to comment.