Fixed wrong InteractPacket constants

Thanks @thebigsmileXD
This commit is contained in:
PEMapModder
2016-02-23 21:05:59 +08:00
parent ccb60ff81e
commit 7ba7eaf303
2 changed files with 7 additions and 2 deletions

View File

@ -27,8 +27,10 @@ namespace pocketmine\network\protocol;
class InteractPacket extends DataPacket{
const NETWORK_ID = Info::INTERACT_PACKET;
const ACTION_LEFT_CLICK = 1;
const ACTION_RIGHT_CLICK = 2;
const ACTION_RIGHT_CLICK = 1;
const ACTION_LEFT_CLICK = 2;
const ACTION_LEAVE_VEHICLE = 3;
/** @deprecated Do NOT use this. This constant is misleading and will be removed in the future */
const ACTION_JUMP = 3;
public $action;