L2JMobius

C6 Party not able to see others

doxxtor · 4 · 4003

Offline doxxtor

  • Vassal
  • *
    • Posts: 2
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


Online Mobius

  • Distinguished King
  • *****
    • Posts: 16047
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);


Offline doxxtor

  • Vassal
  • *
    • Posts: 2