From 3f8331fbd5aa9151799725be5546e480fa344063 Mon Sep 17 00:00:00 2001 From: Justinmcnabb <54878589+Justinmcnabb@users.noreply.github.com> Date: Fri, 6 Dec 2019 05:37:06 -0500 Subject: [PATCH] woodcutting: Add missing Willow Tree Object IDs (#10391) --- .../java/net/runelite/client/plugins/woodcutting/Tree.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/woodcutting/Tree.java b/runelite-client/src/main/java/net/runelite/client/plugins/woodcutting/Tree.java index e041108602..6f11a1eb4a 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/woodcutting/Tree.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/woodcutting/Tree.java @@ -47,6 +47,7 @@ import static net.runelite.api.ObjectID.TREE_1278; import static net.runelite.api.ObjectID.TREE_1279; import static net.runelite.api.ObjectID.TREE_1280; import static net.runelite.api.ObjectID.WILLOW; +import static net.runelite.api.ObjectID.WILLOW_10829; import static net.runelite.api.ObjectID.WILLOW_10831; import static net.runelite.api.ObjectID.WILLOW_10833; import static net.runelite.api.ObjectID.YEW; @@ -58,7 +59,7 @@ enum Tree { REGULAR_TREE(null, TREE, TREE_1277, TREE_1278, TREE_1279, TREE_1280), OAK_TREE(Duration.ofMillis(8500), ObjectID.OAK_TREE, OAK_TREE_4540, OAK_10820), - WILLOW_TREE(Duration.ofMillis(8500), WILLOW, WILLOW_10833, WILLOW_10831), + WILLOW_TREE(Duration.ofMillis(8500), WILLOW, WILLOW_10829, WILLOW_10831, WILLOW_10833), MAPLE_TREE(Duration.ofSeconds(35), ObjectID.MAPLE_TREE, MAPLE_TREE_10832, MAPLE_TREE_36681), TEAK_TREE(Duration.ofMillis(8500), TEAK, TEAK_36686), MAHOGANY_TREE(Duration.ofMillis(8500), MAHOGANY, MAHOGANY_36688),