geforkt von Mirrors/Velocity
Fix null timestamps being passed to timekeeper improperly.
Dieser Commit ist enthalten in:
Ursprung
b1fa9dc953
Commit
0250d1ef8a
@ -127,7 +127,10 @@ public class ClientPlaySessionHandler implements MinecraftSessionHandler {
|
||||
}
|
||||
|
||||
@SuppressWarnings("BooleanMethodIsAlwaysInverted")
|
||||
private boolean updateTimeKeeper(Instant instant) {
|
||||
private boolean updateTimeKeeper(@Nullable Instant instant) {
|
||||
if (instant == null) {
|
||||
return true;
|
||||
}
|
||||
if (!this.timeKeeper.update(instant)) {
|
||||
player.disconnect(Component.translatable("multiplayer.disconnect.out_of_order_chat"));
|
||||
return false;
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren