mirror of
https://github.com/Rogiel/l2jserver2
synced 2025-12-09 00:42:56 +00:00
Change-Id: If18611eb0a6296da808aead8f1da54be094db2a9
This commit is contained in:
@@ -15,6 +15,9 @@ public class Lineage2PacketHandler extends SimpleChannelHandler {
|
||||
public void channelOpen(ChannelHandlerContext ctx, ChannelStateEvent e)
|
||||
throws Exception {
|
||||
connection = new Lineage2Connection(e.getChannel());
|
||||
|
||||
System.out.println(e);
|
||||
|
||||
super.channelOpen(ctx, e);
|
||||
}
|
||||
|
||||
@@ -25,7 +28,7 @@ public class Lineage2PacketHandler extends SimpleChannelHandler {
|
||||
if (!(msg instanceof ClientPacket))
|
||||
return;
|
||||
final ClientPacket packet = (ClientPacket) msg;
|
||||
packet.process(connection, null);
|
||||
packet.process(connection);
|
||||
super.messageReceived(ctx, e);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user