Skip to content

Commit c51652b

Browse files
committed
Make GenerationsStructureTags an interface to match Vanilla
1 parent 2b1d8be commit c51652b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

common/src/main/java/generations/gg/generations/structures/generationsstructures/tags/GenerationsStructureTags.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
import net.minecraft.tags.TagKey;
66
import net.minecraft.world.level.levelgen.structure.Structure;
77

8-
public class GenerationsStructureTags {
8+
public interface GenerationsStructureTags {
99

10-
public static final TagKey<Structure> GENERATIONS_STRUCTURES = create("generations_structures");
10+
TagKey<Structure> GENERATIONS_STRUCTURES = create("generations_structures");
1111

12-
public static final TagKey<Structure> POKESHOP = create("pokeshop");
13-
public static final TagKey<Structure> LOOT_BALLOONS = create("loot_balloons");
14-
public static final TagKey<Structure> GYMS = create("gyms");
15-
public static final TagKey<Structure> SHRINES = create("shrines");
12+
TagKey<Structure> POKESHOP = create("pokeshop");
13+
TagKey<Structure> LOOT_BALLOONS = create("loot_balloons");
14+
TagKey<Structure> GYMS = create("gyms");
15+
TagKey<Structure> SHRINES = create("shrines");
1616

1717
/**
1818
* Creates a new {@link TagKey} for the given name.

0 commit comments

Comments
 (0)