Skip to content

Commit 916eead

Browse files
MrHell228Yeregorix
authored andcommitted
Add missing tag groups (#4205)
1 parent 358b223 commit 916eead

1 file changed

Lines changed: 28 additions & 1 deletion

File tree

generator/src/main/java/org/spongepowered/vanilla/generator/world/TagRegistries.java

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,40 @@ public static List<Generator> tagRegistries(final Context context) {
7979
"tag",
8080
"EnchantmentTypeTags"
8181
),
82-
8382
new TagGenerator(
8483
"DAMAGE_TYPE",
8584
Registries.DAMAGE_TYPE,
8685
context.relativeClass("event.cause.entity.damage", "DamageType"),
8786
"tag",
8887
"DamageTypeTags"
88+
),
89+
new TagGenerator(
90+
"BANNER_PATTERN_SHAPE",
91+
Registries.BANNER_PATTERN,
92+
context.relativeClass("data.type", "BannerPatternShape"),
93+
"tag",
94+
"BannerPatternShapeTags"
95+
),
96+
new TagGenerator(
97+
"CAT_TYPE",
98+
Registries.CAT_VARIANT,
99+
context.relativeClass("data.type", "CatType"),
100+
"tag",
101+
"CatTypeTags"
102+
),
103+
new TagGenerator(
104+
"ART_TYPE",
105+
Registries.PAINTING_VARIANT,
106+
context.relativeClass("data.type", "ArtType"),
107+
"tag",
108+
"ArtTypeTags"
109+
),
110+
new TagGenerator(
111+
"STRUCTURE",
112+
Registries.STRUCTURE,
113+
context.relativeClass("world.generation.structure", "Structure"),
114+
"tag",
115+
"StructureTags"
89116
)
90117
);
91118
}

0 commit comments

Comments
 (0)