Packet108SetHotbarOffset

This commit is contained in:
Casey 2023-08-27 15:35:14 +03:00
parent 9e614b897e
commit fc2cedad07
Signed by: hkc
GPG Key ID: F0F6CFE11CDB0960
2 changed files with 8 additions and 0 deletions

View File

@ -76,3 +76,4 @@ from .packet139setpaintingmotive import Packet139SetPaintingMotive
from .packet141updateflag import Packet141UpdateFlag
from .packet105updateprogressbar import Packet105UpdateProgressbar
from .packet142openflagwindow import Packet142OpenFlagWindow
from .packet108sethotbaroffset import Packet108SetHotbarOffset

View File

@ -0,0 +1,7 @@
from .base import Packet
class Packet108SetHotbarOffset(Packet, packet_id=108):
__slots__ = ('offset',)
FIELDS = [
('offset', 'ubyte'),
]