diff options
| author | megamage <none@none> | 2009-02-19 18:49:11 -0600 |
|---|---|---|
| committer | megamage <none@none> | 2009-02-19 18:49:11 -0600 |
| commit | 7fc442263d92d43cb8e4063464dbec9d0f84f304 (patch) | |
| tree | 2b39b73743b6c7ceac7fe1afbe55979dcbea5fa1 /src/game/GameObject.h | |
| parent | fe6bfc2ef1c33271912068a9123b3186d718443a (diff) | |
Drop Say/Yell/etc string versions.
1) DB based string_id versions must be used.
2) for debug purposes raw WorldObject::MonsterSay/etc versions can be used
Author: VladimirMangos
--HG--
branch : trunk
Diffstat (limited to 'src/game/GameObject.h')
| -rw-r--r-- | src/game/GameObject.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/game/GameObject.h b/src/game/GameObject.h index 0213bcc9bf2..07f6c5a4362 100644 --- a/src/game/GameObject.h +++ b/src/game/GameObject.h @@ -444,10 +444,6 @@ class TRINITY_DLL_SPEC GameObject : public WorldObject uint32 GetDBTableGUIDLow() const { return m_DBTableGuid; } - void Say(const char* text, uint32 language, uint64 TargetGuid) { MonsterSay(text,language,TargetGuid); } - void Yell(const char* text, uint32 language, uint64 TargetGuid) { MonsterYell(text,language,TargetGuid); } - void TextEmote(const char* text, uint64 TargetGuid) { MonsterTextEmote(text,TargetGuid); } - void Whisper(const char* text,uint64 receiver) { MonsterWhisper(text,receiver); } void Say(int32 textId, uint32 language, uint64 TargetGuid) { MonsterSay(textId,language,TargetGuid); } void Yell(int32 textId, uint32 language, uint64 TargetGuid) { MonsterYell(textId,language,TargetGuid); } void TextEmote(int32 textId, uint64 TargetGuid) { MonsterTextEmote(textId,TargetGuid); } |
