aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorclick <none@none>2010-12-02 17:30:48 +0100
committerclick <none@none>2010-12-02 17:30:48 +0100
commit94fd1487d0f0c60a28a132385affbd16933f0bc2 (patch)
tree94c8e9d2deaef871be880f7397dbf3d1622b4ed9 /src
parent0efefa685416c8e6c3cd82e3c03da9660157a16a (diff)
Core/Chat: Fix issues introduced in 177d6f86ca
+ Wrong update-query for the channels-table (SQL from 10548 sorted properly) + Add a small correction on Channel.cpp say handling (thanks to Lazzalf/Leak) --HG-- branch : trunk
Diffstat (limited to 'src')
-rwxr-xr-xsrc/server/game/Chat/Channels/Channel.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/server/game/Chat/Channels/Channel.cpp b/src/server/game/Chat/Channels/Channel.cpp
index 9a5e42ef6c0..30f9f95adfc 100755
--- a/src/server/game/Chat/Channels/Channel.cpp
+++ b/src/server/game/Chat/Channels/Channel.cpp
@@ -641,12 +641,6 @@ void Channel::Say(uint64 p, const char *what, uint32 lang)
MakeMuted(&data);
SendToOne(&data, p);
}
- else if (!players[p].IsModerator() && sec < SEC_GAMEMASTER)
- {
- WorldPacket data;
- MakeNotModerator(&data);
- SendToOne(&data, p);
- }
else
{
uint32 messageLength = strlen(what) + 1;