mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-05-16 02:38:54 +00:00
Fixed wrong InteractPacket constants
Thanks @thebigsmileXD
This commit is contained in:
parent
ccb60ff81e
commit
7ba7eaf303
@ -2300,6 +2300,9 @@ class Player extends Human implements CommandSender, InventoryHolder, ChunkLoade
|
|||||||
|
|
||||||
$cancelled = false;
|
$cancelled = false;
|
||||||
|
|
||||||
|
echo "Packet data:\n";
|
||||||
|
var_dump($packet->target, $packet->action);
|
||||||
|
|
||||||
if($packet->action === InteractPacket::ACTION_RIGHT_CLICK){
|
if($packet->action === InteractPacket::ACTION_RIGHT_CLICK){
|
||||||
// TODO handle
|
// TODO handle
|
||||||
break;
|
break;
|
||||||
|
@ -27,8 +27,10 @@ namespace pocketmine\network\protocol;
|
|||||||
class InteractPacket extends DataPacket{
|
class InteractPacket extends DataPacket{
|
||||||
const NETWORK_ID = Info::INTERACT_PACKET;
|
const NETWORK_ID = Info::INTERACT_PACKET;
|
||||||
|
|
||||||
const ACTION_LEFT_CLICK = 1;
|
const ACTION_RIGHT_CLICK = 1;
|
||||||
const ACTION_RIGHT_CLICK = 2;
|
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;
|
const ACTION_JUMP = 3;
|
||||||
|
|
||||||
public $action;
|
public $action;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user