mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Add ChatBot methods to get inventories.
This commit is contained in:
parent
6eb12fd489
commit
8b57b657e6
2 changed files with 5 additions and 0 deletions
|
|
@ -664,6 +664,10 @@ namespace MinecraftClient
|
||||||
{
|
{
|
||||||
return Handler.GetInventoryEnabled();
|
return Handler.GetInventoryEnabled();
|
||||||
}
|
}
|
||||||
|
public Dictionary<int, Container> GetInventories()
|
||||||
|
{
|
||||||
|
return Handler.GetInventories();
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get the current Minecraft World
|
/// Get the current Minecraft World
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ using System.Net.Sockets;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Net;
|
using System.Net;
|
||||||
|
using MinecraftClient.ChatBots;
|
||||||
using MinecraftClient.Protocol;
|
using MinecraftClient.Protocol;
|
||||||
using MinecraftClient.Proxy;
|
using MinecraftClient.Proxy;
|
||||||
using MinecraftClient.Protocol.Handlers.Forge;
|
using MinecraftClient.Protocol.Handlers.Forge;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue