fix: I actually read wiki.vg
This commit is contained in:
parent
acdb60cd2f
commit
f04d873d21
1 changed files with 2 additions and 2 deletions
|
@ -67,9 +67,9 @@ class GameContainer(Scaffold):
|
|||
|
||||
@self.on_packet(PacketSetSlot)
|
||||
async def on_set_slot(packet:PacketSetSlot):
|
||||
if packet.windowId < 0:
|
||||
if packet.windowId == 0:
|
||||
self.window_entity_id = 0
|
||||
self.window_id = 0
|
||||
self.window_title = ""
|
||||
elif self.window_id > 0 and packet.windowId == self.window_id:
|
||||
elif packet.windowId == self.window_id:
|
||||
self.window_inventory[packet.slot] = packet.item
|
||||
|
|
Loading…
Reference in a new issue