From 4655412b5f3ad3696cd6915a413ed7007fd9a7d0 Mon Sep 17 00:00:00 2001 From: Arham Siddiqui <2886217+Arham4@users.noreply.github.com> Date: Sun, 13 Sep 2020 15:28:33 -0500 Subject: [PATCH] Flip fishing rod bait names Item 313 is fishing bait, item 314 is feathers. --- .../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..d8dc6cc81 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 = 313, baitName = "fishing bait"), + FLY_FISHING_ROD("You attempt to catch a fish...", id = 309, animation = 622, bait = 314, 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 +}