From 07a972dc462d08ac431d7227348ef937518307e3 Mon Sep 17 00:00:00 2001 From: Mitch Freeman <65987027+neckkola@users.noreply.github.com> Date: Wed, 3 Sep 2025 18:15:57 -0300 Subject: [PATCH] Fix a problem with potions and quantity --- zone/parcels.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/zone/parcels.cpp b/zone/parcels.cpp index 0ae296eef..f1dc874c1 100644 --- a/zone/parcels.cpp +++ b/zone/parcels.cpp @@ -386,9 +386,7 @@ void Client::DoParcelSend(const Parcel_Struct *parcel_in) uint32 quantity = 1; if (inst->IsStackable()) { quantity = parcel_in->quantity; - } - - if (inst->GetItem()->MaxCharges > 0) { + } else if (inst->GetItem()->MaxCharges > 0) { quantity = inst->GetCharges(); }