Skip to content

Commit

Permalink
feat: 1.21.3, generic command arg type generator (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
mworzala authored Oct 24, 2024
1 parent 536187f commit c63a8fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ public enum DataGenType {
ATTRIBUTES("attributes", new AttributeGenerator()),
BIOMES("biomes", new BiomeGenerator()),
BLOCKS("blocks", new BlockGenerator()),
COMMAND_ARGUMENTS("command_arguments", new CommandArgumentGenerator()),
CUSTOM_STATISTICS("custom_statistics", new CustomStatisticGenerator()),
DYE_COLORS("dye_colors", new DyeColorGenerator()),
ENTITIES("entities", new EntityGenerator()),
Expand All @@ -38,6 +37,7 @@ public enum DataGenType {
SLOT_DISPLAY_TYPE("slot_display_types", new GenericRegistryGenerator<>(BuiltInRegistries.SLOT_DISPLAY)),
RECIPE_BOOK_CATEGORY("recipe_book_categories", new GenericRegistryGenerator<>(BuiltInRegistries.RECIPE_BOOK_CATEGORY)),
CONSUME_EFFECT("consume_effects", new GenericRegistryGenerator<>(BuiltInRegistries.CONSUME_EFFECT_TYPE)),
COMMAND_ARGUMENTS("command_arguments", new GenericRegistryGenerator<>(BuiltInRegistries.COMMAND_ARGUMENT_TYPE)),

// Tags are specified as a special case in datagen

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ metadata.format.version = "1.1"

[versions]
gson = "2.10.1"
minecraft = "1.21.2"
minecraft = "1.21.3"

slf4j-api = "2.0.7"
logback = "1.4.5"
Expand Down

0 comments on commit c63a8fb

Please sign in to comment.