Fix 1.13+ tab complete for server commands

This commit is contained in:
Andrew Steinborn 2019-11-28 13:12:53 -05:00
parent 68e5372b2e
commit 50b50f3cbb

View File

@ -427,6 +427,9 @@ public class ClientPlaySessionHandler implements MinecraftSessionHandler {
this.finishRegularTabComplete(outstandingTabComplete, response); this.finishRegularTabComplete(outstandingTabComplete, response);
} }
outstandingTabComplete = null; outstandingTabComplete = null;
} else {
// Nothing to do
player.getConnection().write(response);
} }
} }