1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 23:44:38 +00:00

Fix dimension type order

This commit is contained in:
Shayne Hartford 2025-02-21 05:10:49 -05:00
commit b8df77aee6

View file

@ -30,9 +30,9 @@ impl Default for WolfVariant {
registry! {
enum DimensionType {
Overworld => "minecraft:overworld",
Nether => "minecraft:the_nether",
End => "minecraft:the_end",
OverworldCaves => "minecraft:overworld_caves",
End => "minecraft:the_end",
Nether => "minecraft:the_nether",
}
}