12 lines
259 B
Python
12 lines
259 B
Python
|
from .base import Packet
|
||
|
|
||
|
class Packet15Place(Packet, packet_id=15):
|
||
|
FIELDS = [
|
||
|
('x', 'int'),
|
||
|
('y', 'byte'),
|
||
|
('z', 'int'),
|
||
|
('direction', 'byte'),
|
||
|
('y_placed', 'double'),
|
||
|
('item', 'itemstack_optional')
|
||
|
]
|