Skip to content

Commit 77108d1

Browse files
committed
final
1 parent d275730 commit 77108d1

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/MarbleWorld.hx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1984,17 +1984,19 @@ class MarbleWorld extends Scheduler {
19841984
// pktClone.sort((a, b) -> {
19851985
// return (a.c == client.id) ? 1 : (b.c == client.id) ? -1 : 0;
19861986
// });
1987+
marble.clearNetFlags();
1988+
19871989
if (client.state != GAME) {
19881990
allRecv = false;
19891991
continue; // Only send if in game
19901992
}
1991-
marble.clearNetFlags();
1993+
19921994
for (packet in packets) {
19931995
client.sendBytes(packet);
19941996
}
19951997
}
1996-
if (allRecv)
1997-
this.marble.clearNetFlags();
1998+
// if (allRecv)
1999+
this.marble.clearNetFlags();
19982000
}
19992001
}
20002002
for (pi in this.pathedInteriors) {

0 commit comments

Comments
 (0)