Fix menu entry swap for shark harpoon fishing (#965)

* Change "Net" to "Big Net"

Shark harpoon option is supposed to be swapped with "Big Net", not "Net"
This commit is contained in:
XrioBtw
2018-03-15 10:02:44 +01:00
committed by Tomas Slusny
parent 3959b39e9e
commit f4ed46edf6
2 changed files with 2 additions and 2 deletions

View File

@@ -72,7 +72,7 @@ public interface MenuEntrySwapperConfig extends Config
position = 3,
keyName = "swapHarpoon",
name = "Harpoon",
description = "Swap Cage, Net with Harpoon on Fishing spot"
description = "Swap Cage, Big Net with Harpoon on Fishing spot"
)
default boolean swapHarpoon()
{

View File

@@ -103,7 +103,7 @@ public class MenuEntrySwapperPlugin extends Plugin
{
swap("harpoon", option, target, true);
}
else if (config.swapHarpoon() && option.equals("net"))
else if (config.swapHarpoon() && option.equals("big net"))
{
swap("harpoon", option, target, true);
}