mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Add Item type extension
This commit is contained in:
parent
31d45b0950
commit
b1121e91e3
3 changed files with 54 additions and 1 deletions
|
|
@ -50,7 +50,7 @@ namespace MinecraftClient.ChatBots
|
|||
Container inventory = GetPlayerInventory();
|
||||
bool found = false;
|
||||
LastSlot = CurrentSlot;
|
||||
if (inventory.Items.ContainsKey(CurrentSlot + 36) && inventory.Items[CurrentSlot + 36].IsFood())
|
||||
if (inventory.Items.ContainsKey(CurrentSlot + 36) && ItemTypeExtensions.IsFood(inventory.Items[CurrentSlot + 36].Type))
|
||||
{
|
||||
// no need to change slot
|
||||
found = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue