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:
@@ -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()
|
||||
{
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user