Fix typo in #900

This commit is contained in:
James58899
2022-12-19 17:31:02 +08:00
parent 1ec77eb123
commit 294199e270

View File

@@ -54,7 +54,7 @@ public class SessionCommandHandler implements CommandHandler<SessionPlayerComman
String commandToRun = result.getCommand().orElse(packet.command); String commandToRun = result.getCommand().orElse(packet.command);
if (result.isForwardToServer()) { if (result.isForwardToServer()) {
if (!packet.isSigned() && commandToRun.equals(packet.command)) { if (packet.isSigned() && commandToRun.equals(packet.command)) {
return CompletableFuture.completedFuture(packet); return CompletableFuture.completedFuture(packet);
} else { } else {
if (packet.isSigned()) { if (packet.isSigned()) {