Switch to Maven file structure
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
package net.server.handlers.login;
|
||||
|
||||
import client.MapleClient;
|
||||
import net.AbstractMaplePacketHandler;
|
||||
import tools.MaplePacketCreator;
|
||||
import tools.data.input.SeekableLittleEndianAccessor;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author kevintjuh93
|
||||
*/
|
||||
public final class AcceptToSHandler extends AbstractMaplePacketHandler {
|
||||
|
||||
@Override
|
||||
public boolean validateState(MapleClient c) {
|
||||
return !c.isLoggedIn();
|
||||
}
|
||||
|
||||
@Override
|
||||
public final void handlePacket(SeekableLittleEndianAccessor slea, MapleClient c) {
|
||||
if (slea.available() == 0 || slea.readByte() != 1 || c.acceptToS()) {
|
||||
c.disconnect(false, false);//Client dc's but just because I am cool I do this (:
|
||||
return;
|
||||
}
|
||||
if (c.finishLogin() == 0) {
|
||||
c.announce(MaplePacketCreator.getAuthSuccess(c));
|
||||
} else {
|
||||
c.announce(MaplePacketCreator.getLoginFailed(9));//shouldn't happen XD
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user