Core/Channels: Fix channel joins/changes

This commit is contained in:
hondacrx
2018-03-18 11:50:49 -04:00
parent 761af36d05
commit 49306f7a6e
3 changed files with 8 additions and 6 deletions
+2 -2
View File
@@ -250,7 +250,7 @@ namespace Game.Chat
}
}
public void LeaveChannel(Player player, bool send = true)
public void LeaveChannel(Player player, bool send = true, bool suspend = false)
{
ObjectGuid guid = player.GetGUID();
if (!IsOn(guid))
@@ -272,7 +272,7 @@ namespace Game.Chat
SendToOne(builder, guid);
*/
SendToOne(new ChannelNotifyLeftBuilder(this), guid);
SendToOne(new ChannelNotifyLeftBuilder(this, suspend), guid);
}
PlayerInfo info = _playersStore.LookupByKey(guid);