12 lines
247 B
Python
12 lines
247 B
Python
|
from .base import Packet
|
||
|
|
||
|
class Packet34EntityTeleport(Packet, packet_id=34):
|
||
|
FIELDS = [
|
||
|
('entity_id', 'int'),
|
||
|
('x', 'int'),
|
||
|
('y', 'int'),
|
||
|
('z', 'int'),
|
||
|
('yaw', 'byte'),
|
||
|
('pitch', 'byte'),
|
||
|
]
|