Fix Reliable queue not "cleaning up"
This commit is contained in:
parent
f97d3b6649
commit
02406eab24
@ -35,8 +35,6 @@ namespace Network.Syncing {
|
||||
|
||||
Sync.LastReliableIDReceived = LastReliableIDReceived;
|
||||
|
||||
GD.print("LastReliableIDReceived: " + Sync.LastReliableIDReceived);
|
||||
|
||||
// Add Queues
|
||||
var Unreliables = UnreliableQueue.ToArray();
|
||||
var Reliables = ReliableQueue.ToArray();
|
||||
@ -49,7 +47,6 @@ namespace Network.Syncing {
|
||||
Unreliable.Serialize(Buffer);
|
||||
}
|
||||
foreach (Serializable Reliable in Reliables) {
|
||||
GD.print("Sent a reliable message!");
|
||||
Reliable.Serialize(Buffer);
|
||||
}
|
||||
|
||||
@ -69,8 +66,6 @@ namespace Network.Syncing {
|
||||
|
||||
LastReliableIDTheyReceived = Sync.LastReliableIDReceived;
|
||||
|
||||
GD.print("They have now received reliables up to ID " + LastReliableIDReceived);
|
||||
|
||||
RemoveRedundantReliables();
|
||||
|
||||
// Read Queues
|
||||
@ -125,7 +120,7 @@ namespace Network.Syncing {
|
||||
}
|
||||
|
||||
private void RemoveRedundantReliables() {
|
||||
ReliableQueue.FindAll(Packet => Packet.Metadata.ID > LastReliableIDTheyReceived);
|
||||
ReliableQueue = ReliableQueue.FindAll(Packet => Packet.Metadata.ID > LastReliableIDTheyReceived);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user