Merge pull request #7657 from deathbeam/request-party-sync
Request party sync on party plugin startup
This commit is contained in:
@@ -125,7 +125,7 @@ public class PartyPlugin extends Plugin implements KeyListener
|
|||||||
private final List<PartyTilePingData> pendingTilePings = Collections.synchronizedList(new ArrayList<>());
|
private final List<PartyTilePingData> pendingTilePings = Collections.synchronizedList(new ArrayList<>());
|
||||||
|
|
||||||
private int lastHp, lastPray;
|
private int lastHp, lastPray;
|
||||||
private boolean hotkeyDown;
|
private boolean hotkeyDown, doSync;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void configure(Binder binder)
|
public void configure(Binder binder)
|
||||||
@@ -142,6 +142,7 @@ public class PartyPlugin extends Plugin implements KeyListener
|
|||||||
wsClient.registerMessage(TilePing.class);
|
wsClient.registerMessage(TilePing.class);
|
||||||
wsClient.registerMessage(LocationUpdate.class);
|
wsClient.registerMessage(LocationUpdate.class);
|
||||||
keyManager.registerKeyListener(this);
|
keyManager.registerKeyListener(this);
|
||||||
|
doSync = true; // Delay sync so eventbus can process correctly.
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -157,6 +158,7 @@ public class PartyPlugin extends Plugin implements KeyListener
|
|||||||
wsClient.unregisterMessage(LocationUpdate.class);
|
wsClient.unregisterMessage(LocationUpdate.class);
|
||||||
keyManager.unregisterKeyListener(this);
|
keyManager.unregisterKeyListener(this);
|
||||||
hotkeyDown = false;
|
hotkeyDown = false;
|
||||||
|
doSync = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Provides
|
@Provides
|
||||||
@@ -271,6 +273,14 @@ public class PartyPlugin extends Plugin implements KeyListener
|
|||||||
@Subscribe
|
@Subscribe
|
||||||
public void onGameTick(final GameTick event)
|
public void onGameTick(final GameTick event)
|
||||||
{
|
{
|
||||||
|
if (doSync && !party.getMembers().isEmpty())
|
||||||
|
{
|
||||||
|
// Request sync
|
||||||
|
ws.send(new UserSync(party.getLocalMember().getMemberId()));
|
||||||
|
}
|
||||||
|
|
||||||
|
doSync = false;
|
||||||
|
|
||||||
final int currentHealth = client.getBoostedSkillLevel(Skill.HITPOINTS);
|
final int currentHealth = client.getBoostedSkillLevel(Skill.HITPOINTS);
|
||||||
final int currentPrayer = client.getBoostedSkillLevel(Skill.PRAYER);
|
final int currentPrayer = client.getBoostedSkillLevel(Skill.PRAYER);
|
||||||
final int realHealth = client.getRealSkillLevel(Skill.HITPOINTS);
|
final int realHealth = client.getRealSkillLevel(Skill.HITPOINTS);
|
||||||
|
|||||||
Reference in New Issue
Block a user