From 6b429bf8e2b6ce183420dd1b33f220f0a97368d9 Mon Sep 17 00:00:00 2001 From: Kyleeld <48519776+Kyleeld@users.noreply.github.com> Date: Sat, 25 May 2019 22:33:45 +0100 Subject: [PATCH] Update MenuEntrySwapperConfig.java --- .../MenuEntrySwapperConfig.java | 74 +++++++++++++++++++ 1 file changed, 74 insertions(+) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/menuentryswapper/MenuEntrySwapperConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/menuentryswapper/MenuEntrySwapperConfig.java index 8a9f55780e..713c1f0415 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/menuentryswapper/MenuEntrySwapperConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/menuentryswapper/MenuEntrySwapperConfig.java @@ -1460,4 +1460,78 @@ public interface MenuEntrySwapperConfig extends Config } //------------------------------------------------------------// + + @ConfigItem( + keyName = "hideExamine", + name = "Hide Examine", + description = "Hides the 'examine' option from the right click menu", + position = 111, + group = "Right Click Options" + ) + default boolean hideExamine() + { + return true; + } + + @ConfigItem( + keyName = "hideTradeWith", + name = "Hide Trade With", + description = "Hides the 'trade with' option from the right click menu", + position = 112, + group = "Right Click Options" + ) + default boolean hideTradeWith() + { + return true; + } + + @ConfigItem( + keyName = "hideReport", + name = "Hide Report", + description = "Hides the 'report' option from the right click menu", + position = 113, + group = "Right Click Options" + ) + default boolean hideReport() + { + return true; + } + + @ConfigItem( + keyName = "hideLookup", + name = "Hide Lookup", + description = "Hides the 'lookup' option from the right click menu", + position = 114, + group = "Right Click Options" + ) + default boolean hideLookup() + { + return true; + } + + @ConfigItem( + keyName = "hideNet", + name = "Hide Net", + description = "Hides the 'net' option from the right click menu", + position = 115, + group = "Right Click Options" + ) + default boolean hideNet() + { + return true; + } + + @ConfigItem( + keyName = "hideBait", + name = "Hide Bait", + description = "Hides the 'Bait' option from the right click menu", + position = 116, + group = "Right Click Options" + ) + default boolean hideBait() + { + return true; + } + + //------------------------------------------------------------// } \ No newline at end of file