[skip ci] Newly add certain architecture releases and enable compression.

This commit is contained in:
BruceChen 2023-02-02 15:36:02 +08:00
parent 3735cab9dd
commit 4f608687ee
3 changed files with 199 additions and 64 deletions

View file

@ -2157,7 +2157,9 @@ namespace MinecraftClient
{
if (windowId != 0)
inventories.Remove(windowId);
return handler.SendCloseWindow(windowId);
bool result = handler.SendCloseWindow(windowId);
DispatchBotEvent(bot => bot.OnInventoryClose(windowId));
return result;
}
return false;
}