mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Merge branch 'master' of https://github.com/GeyserMC/Geyser into crash-fix
This commit is contained in:
commit
b2413f2d9a
3 changed files with 6 additions and 2 deletions
|
|
@ -14,7 +14,7 @@ https://discord.gg/mRjbCsS
|
||||||
- [x] Server recognized in server list
|
- [x] Server recognized in server list
|
||||||
- [x] Join detection from remote
|
- [x] Join detection from remote
|
||||||
- [ ] Online mode/auth support
|
- [ ] Online mode/auth support
|
||||||
- [ ] Chat/command support
|
- [x] Chat/command support
|
||||||
- [ ] Inventory support
|
- [ ] Inventory support
|
||||||
- [ ] Movement support
|
- [ ] Movement support
|
||||||
- [ ] Entity support
|
- [ ] Entity support
|
||||||
|
|
|
||||||
|
|
@ -168,7 +168,11 @@ public class UpstreamPacketHandler implements BedrockPacketHandler {
|
||||||
@Override
|
@Override
|
||||||
public boolean handle(CommandRequestPacket packet) {
|
public boolean handle(CommandRequestPacket packet) {
|
||||||
System.out.println("Handled packet: " + packet.getClass().getSimpleName());
|
System.out.println("Handled packet: " + packet.getClass().getSimpleName());
|
||||||
return false;
|
|
||||||
|
ClientChatPacket chatPacket = new ClientChatPacket(packet.getCommand());
|
||||||
|
session.getDownstream().getSession().send(chatPacket);
|
||||||
|
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
BIN
screenshots/version.png
Normal file
BIN
screenshots/version.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 87 KiB |
Loading…
Add table
Add a link
Reference in a new issue