9 lines
200 B
Python
9 lines
200 B
Python
|
from .base import Packet
|
||
|
|
||
|
class Packet103SetSlot(Packet, packet_id=103):
|
||
|
FIELDS = [
|
||
|
('window_id', 'byte'),
|
||
|
('slot', 'short'),
|
||
|
('item', 'extendeditemstack_optional'),
|
||
|
]
|