bta-proxy/bta_proxy/packets/packet17sleep.py

11 lines
221 B
Python
Raw Normal View History

2023-08-25 23:11:36 +03:00
from .base import Packet
class Packet17Sleep(Packet, packet_id=17):
FIELDS = [
('entity_id', 'int'),
('field_22046_e', 'byte'),
('x', 'int'),
('y', 'int'),
('z', 'int'),
]