9 lines
197 B
Python
9 lines
197 B
Python
|
from .base import Packet
|
||
|
|
||
|
class Packet9Respawn(Packet, packet_id=9):
|
||
|
__slots__ = ('dimension', 'world_type')
|
||
|
FIELDS = [
|
||
|
('dimension', 'byte'),
|
||
|
('world_type', 'byte'),
|
||
|
]
|