diff --git a/zone/forage.cpp b/zone/forage.cpp index 7941c2000..7a166174a 100644 --- a/zone/forage.cpp +++ b/zone/forage.cpp @@ -369,7 +369,7 @@ void Client::GoFish() //this is potentially exploitable in that they can fish //and then swap out items in primary slot... too lazy to fix right now const EQEmu::ItemInstance* Pole = m_inv[EQEmu::invslot::slotPrimary]; - if (Pole && Pole->GetItem()->SubType == 1 && zone->random.Int(0, 49) == 1) { + if (Pole && Pole->GetItem()->SubType == 0 && zone->random.Int(0, 49) == 1) { MessageString(Chat::Skills, FISHING_POLE_BROKE); //Your fishing pole broke! DeleteItemInInventory(EQEmu::invslot::slotPrimary, 0, true); }