Fix lineup technique points not updating when changing lineups in the forgotten hall

This commit is contained in:
Melledy
2023-10-08 06:35:44 -07:00
parent 49eec57572
commit a9719c0d59

View File

@@ -57,7 +57,10 @@ public class LineupManager {
this.currentExtraLineup = type;
if (sync) {
// Sync with scene entities
this.getPlayer().getScene().syncLineup();
// Sync lineup data with client
player.sendPacket(new PacketSyncLineupNotify(this.getExtraLineupByType(type)));
}
}