mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Finish AutoCraft core functional part
This commit is contained in:
parent
82fb081828
commit
97d7325939
5 changed files with 220 additions and 52 deletions
|
|
@ -1181,6 +1181,16 @@ namespace MinecraftClient
|
|||
return Handler.RegisterCommand(cmdName, cmdDesc, callback);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Close a opened inventory
|
||||
/// </summary>
|
||||
/// <param name="inventoryID"></param>
|
||||
/// <returns>True if success</returns>
|
||||
protected bool CloseInventory(int inventoryID)
|
||||
{
|
||||
return Handler.CloseInventory(inventoryID);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Command runner definition.
|
||||
/// Returned string will be the output of the command
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue