Handlers read from InPacket instead of SeekableLittleEndianAccessor
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
*/
|
||||
package tools.exceptions;
|
||||
|
||||
import tools.data.input.LittleEndianAccessor;
|
||||
import net.packet.InPacket;
|
||||
|
||||
|
||||
/**
|
||||
@@ -28,8 +28,8 @@ import tools.data.input.LittleEndianAccessor;
|
||||
*/
|
||||
public class EmptyMovementException extends Exception {
|
||||
|
||||
public EmptyMovementException(LittleEndianAccessor lea) {
|
||||
super("Empty movement: " + lea);
|
||||
public EmptyMovementException(InPacket inPacket) {
|
||||
super("Empty movement: " + inPacket);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user