@@ -195,13 +195,23 @@ public interface MenuEntrySwapperConfig extends Config
|
|||||||
@ConfigItem(
|
@ConfigItem(
|
||||||
keyName = "swapPrivate",
|
keyName = "swapPrivate",
|
||||||
name = "Private",
|
name = "Private",
|
||||||
description = "Swap Shared with Private on the Chamber of Xeric storage units."
|
description = "Swap Shared with Private on the Chambers of Xeric storage units."
|
||||||
)
|
)
|
||||||
default boolean swapPrivate()
|
default boolean swapPrivate()
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ConfigItem(
|
||||||
|
keyName = "swapPick",
|
||||||
|
name = "Pick",
|
||||||
|
description = "Swap Pick with Pick-lots of the Gourd tree in the Chambers of Xeric"
|
||||||
|
)
|
||||||
|
default boolean swapPick()
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
@ConfigItem(
|
@ConfigItem(
|
||||||
keyName = "swapQuick",
|
keyName = "swapQuick",
|
||||||
name = "Quick Pass/Open/Start/Travel",
|
name = "Quick Pass/Open/Start/Travel",
|
||||||
|
|||||||
@@ -511,6 +511,10 @@ public class MenuEntrySwapperPlugin extends Plugin
|
|||||||
{
|
{
|
||||||
swap("private", option, target, true);
|
swap("private", option, target, true);
|
||||||
}
|
}
|
||||||
|
else if (config.swapPick() && option.equals("pick"))
|
||||||
|
{
|
||||||
|
swap("pick-lots", option, target, true);
|
||||||
|
}
|
||||||
else if (config.shiftClickCustomization() && shiftModifier && !option.equals("use"))
|
else if (config.shiftClickCustomization() && shiftModifier && !option.equals("use"))
|
||||||
{
|
{
|
||||||
Integer customOption = getSwapConfig(eventId);
|
Integer customOption = getSwapConfig(eventId);
|
||||||
|
|||||||
Reference in New Issue
Block a user