Merge branch 'master' of https://github.com/GeyserMC/Geyser into crash-fix

This commit is contained in:
Logicism 2019-07-20 18:26:35 -07:00
commit b2413f2d9a
3 changed files with 6 additions and 2 deletions

View file

@ -14,7 +14,7 @@ https://discord.gg/mRjbCsS
- [x] Server recognized in server list
- [x] Join detection from remote
- [ ] Online mode/auth support
- [ ] Chat/command support
- [x] Chat/command support
- [ ] Inventory support
- [ ] Movement support
- [ ] Entity support

View file

@ -168,7 +168,11 @@ public class UpstreamPacketHandler implements BedrockPacketHandler {
@Override
public boolean handle(CommandRequestPacket packet) {
System.out.println("Handled packet: " + packet.getClass().getSimpleName());
return false;
ClientChatPacket chatPacket = new ClientChatPacket(packet.getCommand());
session.getDownstream().getSession().send(chatPacket);
return true;
}
@Override

BIN
screenshots/version.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB