From 66f60f4c6e8e0354fb1a5f93e00b96ef34de11b2 Mon Sep 17 00:00:00 2001 From: Anubisss Date: Sun, 12 Apr 2009 01:09:25 +0200 Subject: *Fix a typo in Gruul's door handling. Thanks Kudlaty. --HG-- branch : trunk --- .../scripts/scripts/zone/gruuls_lair/instance_gruuls_lair.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/bindings/scripts/scripts/zone/gruuls_lair/instance_gruuls_lair.cpp b/src/bindings/scripts/scripts/zone/gruuls_lair/instance_gruuls_lair.cpp index 61997f07e8b..5c026ab1860 100644 --- a/src/bindings/scripts/scripts/zone/gruuls_lair/instance_gruuls_lair.cpp +++ b/src/bindings/scripts/scripts/zone/gruuls_lair/instance_gruuls_lair.cpp @@ -125,8 +125,8 @@ struct TRINITY_DLL_DECL instance_gruuls_lair : public ScriptedInstance if(data == DONE) HandleGameObject(MaulgarDoor, true); Encounters[0] = data; break; case DATA_GRUULEVENT: - if(data == IN_PROGRESS) HandleGameObject(GruulDoor, true); - else HandleGameObject(GruulDoor, false); + if(data == IN_PROGRESS) HandleGameObject(GruulDoor, false); + else HandleGameObject(GruulDoor, true); Encounters[1] = data; break; } -- cgit v1.2.3 From 49ee13d556f84f65fc154a1e8ff160716f3f4780 Mon Sep 17 00:00:00 2001 From: raczman Date: Sun, 12 Apr 2009 10:53:44 +0200 Subject: Removed unneeded function from Chat.h. --HG-- branch : trunk --- src/game/Chat.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src') diff --git a/src/game/Chat.h b/src/game/Chat.h index 34125fc15c1..8a1d11b4886 100644 --- a/src/game/Chat.h +++ b/src/game/Chat.h @@ -504,7 +504,6 @@ class ChatHandler GameObject* GetObjectGlobalyWithGuidOrNearWithDbGuid(uint32 lowguid,uint32 entry); // Utility methods for commands - void ShowTicket(uint64 guid, char const* text, char const* time); bool LookupPlayerSearchCommand(QueryResult* result, int32 limit); bool HandleBanListHelper(QueryResult* result); bool HandleBanHelper(BanMode mode,char const* args); -- cgit v1.2.3