Package l2p.gameserver.clientpackets

Source Code of l2p.gameserver.clientpackets.FinishRotatingC

package l2p.gameserver.clientpackets;

import l2p.gameserver.model.L2Player;
import l2p.gameserver.serverpackets.FinishRotating;

/**
* format:    cdd
*/
public class FinishRotatingC extends L2GameClientPacket
{
  private int _degree;
  @SuppressWarnings("unused")
  private int _unknown;

  @Override
  public void readImpl()
  {
    _degree = readD();
    _unknown = readD();
  }

  @Override
  public void runImpl()
  {
    L2Player activeChar = getClient().getActiveChar();
    if(activeChar == null)
    {
      return;
    }
    activeChar.broadcastPacket(new FinishRotating(activeChar, _degree, 0));
  }
}
TOP

Related Classes of l2p.gameserver.clientpackets.FinishRotatingC

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.