mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 13:15:42 +12:00
Fix group socials
This commit is contained in:
parent
c72d6f44ea
commit
decdd109e4
1 changed files with 2 additions and 3 deletions
|
@ -615,10 +615,9 @@ namespace HISP.Server
|
|||
case PacketBuilder.SOCIALS_USE:
|
||||
int socialId = Convert.ToInt32(packet[2] - (byte)0x21);
|
||||
SocialType.Social social = SocialType.GetSocial(socialId);
|
||||
|
||||
if (sender.LoggedinUser.SocializingWith != null)
|
||||
|
||||
if (sender.LoggedinUser.SocializingWith != null && social.BaseSocialType.Type != "GROUP")
|
||||
{
|
||||
|
||||
if (sender.LoggedinUser.SocializingWith.MuteAll || sender.LoggedinUser.SocializingWith.MuteSocials)
|
||||
{
|
||||
byte[] cantSocialize = PacketBuilder.CreateChat(Messages.PlayerIgnoringAllSocials, PacketBuilder.CHAT_BOTTOM_RIGHT);
|
||||
|
|
Loading…
Add table
Reference in a new issue