11 lines
233 B
Python
11 lines
233 B
Python
|
from .base import Packet
|
||
|
|
||
|
class Packet132SetMobSpawner(Packet, packet_id=132):
|
||
|
__slots__ = ('x', 'y', 'z', 'type')
|
||
|
FIELDS = [
|
||
|
('x', 'int'),
|
||
|
('y', 'short'),
|
||
|
('z', 'int'),
|
||
|
('type', 'str'),
|
||
|
]
|