Fixed stupid mistake

This commit is contained in:
Stephen 2019-11-05 21:56:20 -05:00
parent 4e9a2b6d8c
commit 75742b487f
3 changed files with 4 additions and 6 deletions

View File

@ -23,7 +23,7 @@ declare(strict_types=1);
namespace pocketmine\network\mcpe;
use pocketmine\network\CompletedUsingItemPacket;
use pocketmine\network\mcpe\protocol\CompletedUsingItemPacket;
use pocketmine\network\mcpe\protocol\ActorEventPacket;
use pocketmine\network\mcpe\protocol\ActorFallPacket;
use pocketmine\network\mcpe\protocol\ActorPickRequestPacket;

View File

@ -21,11 +21,9 @@
declare(strict_types=1);
namespace pocketmine\network;
namespace pocketmine\network\mcpe\protocol;
use pocketmine\network\mcpe\NetworkSession;
use pocketmine\network\mcpe\protocol\DataPacket;
use pocketmine\network\mcpe\protocol\ProtocolInfo;
class CompletedUsingItemPacket extends DataPacket{
public const NETWORK_ID = ProtocolInfo::COMPLETED_USING_ITEM_PACKET;
@ -46,7 +44,7 @@ class CompletedUsingItemPacket extends DataPacket{
public const ACTION_RETRIEVED = 12;
public const ACTION_DYED = 13;
public const ACTION_TRADED = 14;
/** @var int */
public $itemId;
/** @var int */

View File

@ -23,7 +23,7 @@ declare(strict_types=1);
namespace pocketmine\network\mcpe\protocol;
use pocketmine\network\CompletedUsingItemPacket;
use pocketmine\network\mcpe\protocol\CompletedUsingItemPacket;
use pocketmine\utils\Binary;
use pocketmine\utils\BinaryDataException;