Package l2p.gameserver.clientpackets

Source Code of l2p.gameserver.clientpackets.GotoLobby

package l2p.gameserver.clientpackets;

import l2p.gameserver.serverpackets.CharacterSelectionInfo;

public class GotoLobby extends L2GameClientPacket
{
  @Override
  protected void readImpl()
  {
  }

  @Override
  protected void runImpl()
  {
    CharacterSelectionInfo cl = new CharacterSelectionInfo(getClient().getLoginName(), getClient().getSessionId().playOkID1);
    sendPacket(cl);
  }
}
TOP

Related Classes of l2p.gameserver.clientpackets.GotoLobby

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.