Skip to content

Commit

Permalink
Added missing interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
dktapps committed Nov 8, 2023
1 parent 4ba2b7c commit ea3f31a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/AgentAnimationPacket.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

use pocketmine\network\mcpe\protocol\serializer\PacketSerializer;

class AgentAnimationPacket extends DataPacket{
class AgentAnimationPacket extends DataPacket implements ClientboundPacket{
public const NETWORK_ID = ProtocolInfo::AGENT_ANIMATION_PACKET;

public const TYPE_ARM_SWING = 0;
Expand Down
2 changes: 1 addition & 1 deletion src/RefreshEntitlementsPacket.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

use pocketmine\network\mcpe\protocol\serializer\PacketSerializer;

class RefreshEntitlementsPacket extends DataPacket{
class RefreshEntitlementsPacket extends DataPacket implements ClientboundPacket{
public const NETWORK_ID = ProtocolInfo::REFRESH_ENTITLEMENTS_PACKET;

/**
Expand Down

0 comments on commit ea3f31a

Please sign in to comment.