Update for PacketLib changes

This commit is contained in:
Camotoy 2021-11-24 23:38:21 -05:00
parent d8254cb0b2
commit cef803af36
2 changed files with 3 additions and 3 deletions

View File

@ -155,7 +155,7 @@
<dependency>
<groupId>com.github.GeyserMC</groupId>
<artifactId>MCProtocolLib</artifactId>
<version>a581308c</version>
<version>8eca1498</version>
<scope>compile</scope>
<exclusions>
<exclusion>

View File

@ -47,6 +47,7 @@ import com.github.steveice10.mc.protocol.packet.ingame.serverbound.player.Server
import com.github.steveice10.mc.protocol.packet.ingame.serverbound.player.ServerboundPlayerAbilitiesPacket;
import com.github.steveice10.mc.protocol.packet.login.serverbound.ServerboundCustomQueryPacket;
import com.github.steveice10.packetlib.BuiltinFlags;
import com.github.steveice10.packetlib.Session;
import com.github.steveice10.packetlib.event.session.*;
import com.github.steveice10.packetlib.packet.Packet;
import com.github.steveice10.packetlib.tcp.TcpClientSession;
@ -909,8 +910,7 @@ public class GeyserSession implements GeyserConnection, CommandSender {
}
@Override
public void packetReceived(PacketReceivedEvent event) {
Packet packet = event.getPacket();
public void packetReceived(Session session, Packet packet) {
Registries.JAVA_PACKET_TRANSLATORS.translate(packet.getClass(), packet, GeyserSession.this);
}