From f85d5dff43f382c1214ca7822b404a32a4e821da Mon Sep 17 00:00:00 2001 From: Christian <42303117+Chicagolight@users.noreply.github.com> Date: Sun, 1 Aug 2021 10:07:12 -0500 Subject: [PATCH] menu swapper: add placeholder withdraw swap --- .../client/plugins/menuentryswapper/ShiftWithdrawMode.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/menuentryswapper/ShiftWithdrawMode.java b/runelite-client/src/main/java/net/runelite/client/plugins/menuentryswapper/ShiftWithdrawMode.java index bbe09b1393..6e5d42a1fe 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/menuentryswapper/ShiftWithdrawMode.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/menuentryswapper/ShiftWithdrawMode.java @@ -37,9 +37,10 @@ public enum ShiftWithdrawMode WITHDRAW_10("Withdraw-10", MenuAction.CC_OP, 4, 3), WITHDRAW_X("Withdraw-X", MenuAction.CC_OP, 5, 5), WITHDRAW_ALL("Withdraw-All", MenuAction.CC_OP_LOW_PRIORITY, 7, 4), - // chambers of xeric storage units do not have an "all-but-1" option, so this option will choose "Withdraw-all" - // instead when using the storage unit. + // chambers of xeric storage units do not have an "all-but-1" option or a "placeholder" option, so these options will choose "Withdraw-all" + // choose "Withdraw-all" instead when using the storage unit. WITHDRAW_ALL_BUT_1("Withdraw-All-But-1", MenuAction.CC_OP_LOW_PRIORITY, 8, 4), + WITHDRAW_PLACEHOLDER("Placeholder", MenuAction.CC_OP_LOW_PRIORITY, 9, 4), OFF("Off", MenuAction.UNKNOWN, 0, 0); private final String name;