We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d275730 commit 77108d1Copy full SHA for 77108d1
src/MarbleWorld.hx
@@ -1984,17 +1984,19 @@ class MarbleWorld extends Scheduler {
1984
// pktClone.sort((a, b) -> {
1985
// return (a.c == client.id) ? 1 : (b.c == client.id) ? -1 : 0;
1986
// });
1987
+ marble.clearNetFlags();
1988
+
1989
if (client.state != GAME) {
1990
allRecv = false;
1991
continue; // Only send if in game
1992
}
- marble.clearNetFlags();
1993
1994
for (packet in packets) {
1995
client.sendBytes(packet);
1996
1997
- if (allRecv)
- this.marble.clearNetFlags();
1998
+ // if (allRecv)
1999
+ this.marble.clearNetFlags();
2000
2001
2002
for (pi in this.pathedInteriors) {
0 commit comments