From 6a95abb01f23ed07d6da8cb9575ac9ee3b1e85a9 Mon Sep 17 00:00:00 2001 From: Leere Date: Sat, 16 Nov 2013 03:40:35 +0100 Subject: [PATCH] Fix for auto-consume drinking message --- changelog.txt | 3 +++ zone/client.cpp | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/changelog.txt b/changelog.txt index 3c19d577f..739a627ec 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,8 @@ EQEMu Changelog (Started on Sept 24, 2003 15:50) ------------------------------------------------------- +== 11/16/2013 == +Leere: Fixed the drinking message for auto-consume, it will again correctly show up for forced consumption instead. + == 11/15/2013 == demonstar55: Fixed Mob::CalcFocusEffect()'s SE_LimitEffect Leere: Fixed a stacking issue for SE_StackingCommand_Block diff --git a/zone/client.cpp b/zone/client.cpp index b043536b3..a9ac4968c 100644 --- a/zone/client.cpp +++ b/zone/client.cpp @@ -8032,7 +8032,7 @@ void Client::Consume(const Item_Struct *item, uint8 type, int16 slot, bool auto_ m_pp.thirst_level += tchange; DeleteItemInInventory(slot, 1, false); - if(auto_consume) //no message if the client consumed for us + if(!auto_consume) //no message if the client consumed for us entity_list.MessageClose_StringID(this, true, 50, 0, DRINKING_MESSAGE, GetName(), item->Name); #if EQDEBUG >= 1