mirror of
https://github.com/GeyserMC/Geyser.git
synced 2025-03-24 07:49:22 +01:00
Fix: Late Geyser response to ClientboundSelectKnownPacks packet (#5090)
This commit is contained in:
parent
d64c0b38da
commit
0f184627f3
1 changed files with 5 additions and 0 deletions
|
@ -59,4 +59,9 @@ public class JavaSelectKnownPacksTranslator extends PacketTranslator<Clientbound
|
||||||
}
|
}
|
||||||
session.sendDownstreamPacket(new ServerboundSelectKnownPacks(knownPacks));
|
session.sendDownstreamPacket(new ServerboundSelectKnownPacks(knownPacks));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean shouldExecuteInEventLoop() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue