From f9015d48806537050d5db2b3d774b4d4a1734b3b Mon Sep 17 00:00:00 2001 From: Arham Siddiqui <2886217+Arham4@users.noreply.github.com> Date: Sat, 12 Sep 2020 23:50:06 -0500 Subject: [PATCH] Fix fishing rod tools bait The Fishing Rod and Fly Fishing Rod's bait had to be flipped --- .../org/apollo/game/plugin/skills/fishing/FishingTool.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/game/plugin/skills/fishing/src/org/apollo/game/plugin/skills/fishing/FishingTool.kt b/game/plugin/skills/fishing/src/org/apollo/game/plugin/skills/fishing/FishingTool.kt index e49122142..b0c900bdc 100644 --- a/game/plugin/skills/fishing/src/org/apollo/game/plugin/skills/fishing/FishingTool.kt +++ b/game/plugin/skills/fishing/src/org/apollo/game/plugin/skills/fishing/FishingTool.kt @@ -17,8 +17,8 @@ enum class FishingTool( SMALL_NET("You cast out your net...", id = 303, animation = 620), BIG_NET("You cast out your net...", id = 305, animation = 620), HARPOON("You start harpooning fish...", id = 311, animation = 618), - FISHING_ROD("You attempt to catch a fish...", id = 307, animation = 622, bait = 313, baitName = "feathers"), - FLY_FISHING_ROD("You attempt to catch a fish...", id = 309, animation = 622, bait = 314, baitName = "fishing bait"); + FISHING_ROD("You attempt to catch a fish...", id = 307, animation = 622, bait = 314, baitName = "fishing bait"), + FLY_FISHING_ROD("You attempt to catch a fish...", id = 309, animation = 622, bait = 313, baitName = "feathers"); /** * The [Animation] played when fishing with this tool. @@ -29,4 +29,4 @@ enum class FishingTool( * The name of this tool, formatted so it can be inserted into a message. */ val formattedName by lazy { Definitions.item(id).name.toLowerCase() } -} \ No newline at end of file +}