mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Correct spelling mistakes
Add custom config path setting to AutoCraft
This commit is contained in:
parent
3ff2a18b60
commit
1960235968
5 changed files with 59 additions and 39 deletions
|
|
@ -173,7 +173,12 @@ namespace MinecraftClient.Inventory
|
|||
return result.ToArray();
|
||||
}
|
||||
|
||||
public int[] GetEmpytSlot()
|
||||
/// <summary>
|
||||
/// List empty slots in the container
|
||||
/// </summary>
|
||||
/// <returns>An array of slot ID</returns>
|
||||
/// <remarks>Also depending on the container type, some empty slots cannot be used e.g. armor slots. This might cause issues.</remarks>
|
||||
public int[] GetEmpytSlots()
|
||||
{
|
||||
List<int> result = new List<int>();
|
||||
for (int i = 0; i < Type.SlotCount(); i++)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue