Derision's revert from svn I missed.

This commit is contained in:
KimLS
2013-02-16 16:25:57 -08:00
parent da7347f76f
commit b14519b1f5
4 changed files with 6 additions and 14 deletions
+3 -3
View File
@@ -526,12 +526,12 @@ void QuestManager::shout2(const char *str) {
worldserver.SendEmoteMessage(0,0,0,13, "%s shouts, '%s'", owner->GetCleanName(), str);
}
void QuestManager::gmsay(const char *str, uint32 color, bool send_to_world, uint32 to_guilddbid) {
void QuestManager::gmsay(const char *str, uint32 color, bool send_to_world) {
if(send_to_world) {
worldserver.SendEmoteMessage(0, to_guilddbid, 80, color, "%s", str);
worldserver.SendEmoteMessage(0, 0, 80, color, "%s", str);
}
else {
entity_list.MessageStatus(to_guilddbid, 80, color, "%s", str);
entity_list.MessageStatus(0, 80, color, "%s", str);
}
}