mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Added enchanting
This commit is contained in:
parent
d222d5f683
commit
4dc1b420f5
12 changed files with 474 additions and 1 deletions
|
|
@ -358,6 +358,16 @@ namespace MinecraftClient
|
|||
/// <param name="inventoryId"></param>
|
||||
public virtual void OnInventoryClose(int inventoryId) { }
|
||||
|
||||
/// <summary>
|
||||
/// When received inventory/container/window properties from the server.
|
||||
/// Used for Frunaces, Enchanting Table, Beacon, Brewing stand, Stone cutter, Loom and Lectern
|
||||
/// More info about: https://wiki.vg/Protocol#Set_Container_Property
|
||||
/// </summary>
|
||||
/// <param name="inventoryID">Inventory ID</param>
|
||||
/// <param name="propertyId">Property ID</param>
|
||||
/// <param name="propertyValue">Property Value</param>
|
||||
public virtual void OnInventoryProperties(byte inventoryID, short propertyId, short propertyValue) { }
|
||||
|
||||
/// <summary>
|
||||
/// Called when a player joined the game
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue