L2JMobius

Free Users => Solved/Invalid Bug Reports => Topic started by: doxxtor on May 09, 2021, 10:43:47 PM

Title: Party not able to see others
Post by: doxxtor on May 09, 2021, 10:43:47 PM
Hello we are facing a issue with party creation.

Error is quite weird because I've never experinted something like this before.
Is simple when you invite someone to party basically you can not see other player life etc... but the other payer can see yours.
It's quite weid, as no error shown on Gameserver panel

https://ibb.co/5Yqvs07
Title: Re: Party not able to see others
Post by: Mobius on May 09, 2021, 11:07:54 PM
Try this.
Code: [Select]
Index: java/org/l2jmobius/gameserver/model/Party.java
===================================================================
--- java/org/l2jmobius/gameserver/model/Party.java (revision 8661)
+++ java/org/l2jmobius/gameserver/model/Party.java (working copy)
@@ -360,6 +360,10 @@
  msg.addString(player.getName());
  broadcastToPartyMembers(msg);
  broadcastToPartyMembers(new PartySmallWindowAdd(player, this));
+ for (PlayerInstance member : _members)
+ {
+ player.sendPacket(new PartySmallWindowAdd(member, this));
+ }
 
  // add player to party, adjust party level
  _members.add(player);
Title: Re: Party not able to see others
Post by: doxxtor on May 09, 2021, 11:56:28 PM
It works just fine! thank you so much!!!
Title: Re: Party not able to see others
Post by: Mobius on May 10, 2021, 01:02:20 AM
Fixed with https://bitbucket.org/MobiusDev/l2j_mobius/commits/120a29488eae2b1e5dc5590745b2f0e52b3997ee