Fixed keys being stuck during typing.

This commit is contained in:
Andrew Lalis 2021-07-08 00:06:54 +02:00
parent f9d3d35be4
commit c6d54d3f38
2 changed files with 9 additions and 1 deletions

View File

@ -20,6 +20,15 @@ public class PlayerKeyListener extends KeyAdapter {
if (!this.chatManager.isChatting()) {
if ((e.getKeyChar() == 't' || e.getKeyChar() == '/')) {
this.chatManager.setChatting(true);
var s = this.client.getPlayer().getState();
s.setMovingForward(false);
s.setMovingBackward(false);
s.setMovingLeft(false);
s.setMovingRight(false);
s.setReloading(false);
s.setSneaking(false);
s.setSprinting(false);
this.client.sendPlayerState();
if (e.getKeyChar() == '/') this.chatManager.appendToChat('/');
}
} else if (this.chatManager.isChatting()) {

View File

@ -49,7 +49,6 @@ public class Server {
this.worldUpdater = new WorldUpdater(this, this.world);
this.chatManager = new ChatManager(this);
if (settings.getRegistrySettings().isDiscoverable()) {
System.out.println("Starting registry communications.");
this.registryManager = new RegistryManager(this);
}
}