Make Unsynced reset and reordered registers
This commit is contained in:
parent
adf3acabeb
commit
5feda5b8c2
@ -20,10 +20,10 @@ namespace NeonTea.Quakeball.Networking {
|
|||||||
RegisterPacket(typeof(HelloPckt));
|
RegisterPacket(typeof(HelloPckt));
|
||||||
RegisterPacket(typeof(SpawnPckt));
|
RegisterPacket(typeof(SpawnPckt));
|
||||||
RegisterPacket(typeof(SelfIdentPckt));
|
RegisterPacket(typeof(SelfIdentPckt));
|
||||||
RegisterPacket(typeof(MultiplePlayerUpdatesPckt));
|
|
||||||
RegisterPacket(typeof(PlayerUpdatePckt));
|
RegisterPacket(typeof(PlayerUpdatePckt));
|
||||||
RegisterPacket(typeof(PlayerJumpPckt));
|
RegisterPacket(typeof(PlayerJumpPckt));
|
||||||
RegisterPacket(typeof(PlayerSyncPacket));
|
RegisterPacket(typeof(PlayerSyncPacket));
|
||||||
|
RegisterPacket(typeof(MultiplePlayerUpdatesPckt));
|
||||||
RegisterPacket(typeof(MultipleSyncsPckt));
|
RegisterPacket(typeof(MultipleSyncsPckt));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -48,7 +48,9 @@ namespace NeonTea.Quakeball.Networking.Packets {
|
|||||||
if (p.Controlled == null) {
|
if (p.Controlled == null) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
Syncs.Add(p.Controlled.CreateSyncPacket(p.Id, p.Unsynced));
|
PlayerSyncPacket pckt = p.Controlled.CreateSyncPacket(p.Id, p.Unsynced);
|
||||||
|
p.Unsynced = false;
|
||||||
|
Syncs.Add(pckt);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user