Skip to content

Commit c63a8fb

Browse files
authored
feat: 1.21.3, generic command arg type generator (#32)
1 parent 536187f commit c63a8fb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

DataGenerator/src/main/java/net/minestom/datagen/DataGenType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ public enum DataGenType {
1717
ATTRIBUTES("attributes", new AttributeGenerator()),
1818
BIOMES("biomes", new BiomeGenerator()),
1919
BLOCKS("blocks", new BlockGenerator()),
20-
COMMAND_ARGUMENTS("command_arguments", new CommandArgumentGenerator()),
2120
CUSTOM_STATISTICS("custom_statistics", new CustomStatisticGenerator()),
2221
DYE_COLORS("dye_colors", new DyeColorGenerator()),
2322
ENTITIES("entities", new EntityGenerator()),
@@ -38,6 +37,7 @@ public enum DataGenType {
3837
SLOT_DISPLAY_TYPE("slot_display_types", new GenericRegistryGenerator<>(BuiltInRegistries.SLOT_DISPLAY)),
3938
RECIPE_BOOK_CATEGORY("recipe_book_categories", new GenericRegistryGenerator<>(BuiltInRegistries.RECIPE_BOOK_CATEGORY)),
4039
CONSUME_EFFECT("consume_effects", new GenericRegistryGenerator<>(BuiltInRegistries.CONSUME_EFFECT_TYPE)),
40+
COMMAND_ARGUMENTS("command_arguments", new GenericRegistryGenerator<>(BuiltInRegistries.COMMAND_ARGUMENT_TYPE)),
4141

4242
// Tags are specified as a special case in datagen
4343

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ metadata.format.version = "1.1"
22

33
[versions]
44
gson = "2.10.1"
5-
minecraft = "1.21.2"
5+
minecraft = "1.21.3"
66

77
slf4j-api = "2.0.7"
88
logback = "1.4.5"

0 commit comments

Comments
 (0)