From 8bd22e8c385baeebe18a61adab5b37aa8002643e Mon Sep 17 00:00:00 2001 From: Natedog2012 Date: Sun, 29 Mar 2015 02:16:16 -0700 Subject: [PATCH] 2nd part to Alternate currency fix forgot to paste this back in --- zone/client_packet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/client_packet.cpp b/zone/client_packet.cpp index 52afd6460..07e9876ca 100644 --- a/zone/client_packet.cpp +++ b/zone/client_packet.cpp @@ -2625,7 +2625,7 @@ void Client::Handle_OP_AltCurrencyReclaim(const EQApplicationPacket *app) else { uint32 max_currency = GetAlternateCurrencyValue(reclaim->currency_id); - if(max_currency == 0) + if(max_currency == 0 || reclaim->count == 0) return; /* If you input more than you have currency wise, just give the max of the currency you currently have */