mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Use the correct plugin message packet. Thanks, Camo
This commit is contained in:
parent
db583135eb
commit
209a4ffc42
1 changed files with 2 additions and 7 deletions
|
@ -25,7 +25,7 @@
|
|||
|
||||
package org.geysermc.connector.utils;
|
||||
|
||||
import com.github.steveice10.mc.protocol.packet.ingame.server.ServerPluginMessagePacket;
|
||||
import com.github.steveice10.mc.protocol.packet.ingame.client.ClientPluginMessagePacket;
|
||||
import com.google.common.base.Charsets;
|
||||
import org.geysermc.connector.GeyserConnector;
|
||||
import org.geysermc.connector.network.session.GeyserSession;
|
||||
|
@ -74,12 +74,7 @@ public class PluginMessageUtils {
|
|||
}
|
||||
|
||||
public static void sendMessage(GeyserSession session, String channel, byte[] data) {
|
||||
byte[] finalData =
|
||||
ByteBuffer.allocate(data.length + getVarIntLength(data.length))
|
||||
.put(writeVarInt(data.length))
|
||||
.put(data)
|
||||
.array();
|
||||
session.sendDownstreamPacket(new ServerPluginMessagePacket(channel, finalData));
|
||||
session.sendDownstreamPacket(new ClientPluginMessagePacket(channel, data));
|
||||
}
|
||||
|
||||
private static byte[] writeVarInt(int value) {
|
||||
|
|
Loading…
Reference in a new issue