12 lines
291 B
Python
12 lines
291 B
Python
|
from .base import Packet
|
||
|
|
||
|
class Packet141UpdateFlag(Packet, packet_id=141):
|
||
|
__slots__ = ('x', 'y', 'z', 'colors', 'items')
|
||
|
FIELDS = [
|
||
|
('x', 'int'),
|
||
|
('y', 'short'),
|
||
|
('z', 'int'),
|
||
|
('colors', ('bytes', 384)),
|
||
|
('items', ('list', 3, 'nbt')),
|
||
|
]
|