Skip to content

Commit

Permalink
Initial v1.19.50 support (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustTalDevelops committed Nov 29, 2022
1 parent a6a4e3b commit b39a588
Show file tree
Hide file tree
Showing 14 changed files with 484 additions and 44 deletions.
104 changes: 104 additions & 0 deletions minecraft/protocol/container.go
@@ -0,0 +1,104 @@
package protocol

const (
ContainerAnvilInput = iota
ContainerAnvilMaterial
ContainerAnvilResultPreview
ContainerSmithingTableInput
ContainerSmithingTableMaterial
ContainerSmithingTableResultPreview
ContainerArmor
ContainerLevelEntity
ContainerBeaconPayment
ContainerBrewingStandInput
ContainerBrewingStandResult
ContainerBrewingStandFuel
ContainerCombinedHotBarAndInventory
ContainerCraftingInput
ContainerCraftingOutputPreview
ContainerRecipeConstruction
ContainerRecipeNature
ContainerRecipeItems
ContainerRecipeSearch
ContainerRecipeSearchBar
ContainerRecipeEquipment
ContainerRecipeBook
ContainerEnchantingInput
ContainerEnchantingMaterial
ContainerFurnaceFuel
ContainerFurnaceIngredient
ContainerFurnaceResult
ContainerHorseEquip
ContainerHotBar
ContainerInventory
ContainerShulkerBox
ContainerTradeIngredientOne
ContainerTradeIngredientTwo
ContainerTradeResultPreview
ContainerOffhand
ContainerCompoundCreatorInput
ContainerCompoundCreatorOutputPreview
ContainerElementConstructorOutputPreview
ContainerMaterialReducerInput
ContainerMaterialReducerOutput
ContainerLabTableInput
ContainerLoomInput
ContainerLoomDye
ContainerLoomMaterial
ContainerLoomResultPreview
ContainerBlastFurnaceIngredient
ContainerSmokerIngredient
ContainerTradeTwoIngredientOne
ContainerTradeTwoIngredientTwo
ContainerTradeTwoResultPreview
ContainerGrindstoneInput
ContainerGrindstoneAdditional
ContainerGrindstoneResultPreview
ContainerStonecutterInput
ContainerStonecutterResultPreview
ContainerCartographyInput
ContainerCartographyAdditional
ContainerCartographyResultPreview
ContainerBarrel
ContainerCursor
ContainerCreatedOutput
)

const (
ContainerTypeInventory = iota - 1
ContainerTypeContainer
ContainerTypeWorkbench
ContainerTypeFurnace
ContainerTypeEnchantment
ContainerTypeBrewingStand
ContainerTypeAnvil
ContainerTypeDispenser
ContainerTypeDropper
ContainerTypeHopper
ContainerTypeCauldron
ContainerTypeCartChest
ContainerTypeCartHopper
ContainerTypeHorse
ContainerTypeBeacon
ContainerTypeStructureEditor
ContainerTypeTrade
ContainerTypeCommandBlock
ContainerTypeJukebox
ContainerTypeArmour
ContainerTypeHand
ContainerTypeCompoundCreator
ContainerTypeElementConstructor
ContainerTypeMaterialReducer
ContainerTypeLabTable
ContainerTypeLoom
ContainerTypeLectern
ContainerTypeGrindstone
ContainerTypeBlastFurnace
ContainerTypeSmoker
ContainerTypeStonecutter
ContainerTypeCartography
ContainerTypeHUD
ContainerTypeJigsawEditor
ContainerTypeSmithingTable
ContainerTypeChestBoat
)

0 comments on commit b39a588

Please sign in to comment.