root/trunk/AE-go_GameServer/src/com/aionemu/gameserver/network/aion/serverpackets/SM_L2AUTH_LOGIN_CHECK.java

1362440
20
20
21
import com.aionemu.gameserver.network.aion.AionConnection;
21
import com.aionemu.gameserver.network.aion.AionConnection;
22
import com.aionemu.gameserver.network.aion.AionServerPacket;
22
import com.aionemu.gameserver.network.aion.AionServerPacket;
23
import com.aionemu.gameserver.model.account.Account;
23
24
24
/**
25
/**
25
 * @author -Nemesiss-
26
 * @author -Nemesiss-
...
...
48
	@Override
49
	@Override
49
	protected void writeImpl(AionConnection con, ByteBuffer buf)
50
	protected void writeImpl(AionConnection con, ByteBuffer buf)
50
	{
51
	{
52
		Account account = con.getAccount();
53
51
		writeD(buf, ok ? 0x00 : 0x01);
54
		writeD(buf, ok ? 0x00 : 0x01);
52
		writeS(buf, "aionemu_rox!!!");
55
		writeS(buf, account.getName());
53
	}
56
	}
54
}
57
}