diff --git a/source/WorldServer/client.cpp b/source/WorldServer/client.cpp index b670159..e3724f4 100644 --- a/source/WorldServer/client.cpp +++ b/source/WorldServer/client.cpp @@ -13593,7 +13593,9 @@ bool Client::SetPetName(const char* petName) { bool Client::CheckConsumptionAllowed(int16 slot, bool send_message) { if(!GetPlayer()->Alive()) { - Message(CHANNEL_NARRATIVE, "You cannot consume while dead!"); + if(send_message) { + Message(CHANNEL_NARRATIVE, "You cannot consume while dead!"); + } return false; } switch (slot) {