Handlers read from InPacket instead of SeekableLittleEndianAccessor
This commit is contained in:
@@ -24,7 +24,7 @@ package net.server.channel.handlers;
|
||||
import client.MapleClient;
|
||||
import client.processor.action.MakerProcessor;
|
||||
import net.AbstractMaplePacketHandler;
|
||||
import tools.data.input.SeekableLittleEndianAccessor;
|
||||
import net.packet.InPacket;
|
||||
|
||||
/**
|
||||
*
|
||||
@@ -33,7 +33,7 @@ import tools.data.input.SeekableLittleEndianAccessor;
|
||||
public final class MakerSkillHandler extends AbstractMaplePacketHandler {
|
||||
|
||||
@Override
|
||||
public final void handlePacket(SeekableLittleEndianAccessor slea, MapleClient c) {
|
||||
MakerProcessor.makerAction(slea, c);
|
||||
public final void handlePacket(InPacket p, MapleClient c) {
|
||||
MakerProcessor.makerAction(p, c);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user