Skip to content

Commit

Permalink
Stable release for 1.21.2/3.
Browse files Browse the repository at this point in the history
- Stable release for 1.21.2/3
- Use stable Biolith release
- Clean up tags and tag translations
  • Loading branch information
gniftygnome committed Nov 17, 2024
1 parent b094902 commit 9ab36fd
Show file tree
Hide file tree
Showing 7 changed files with 285 additions and 273 deletions.
2 changes: 0 additions & 2 deletions client/src/main/resources/assets/cinderscapes/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,6 @@
"tag.item.c.quartz": "Quartz",
"tag.item.c.quartz_blocks": "Quartz Blocks",
"tag.item.c.storage_blocks.sulfur": "Storage Blocks for Sulfur",
"tag.item.c.stripped_logs": "Stripped Logs",
"tag.item.c.stripped_woods": "Stripped Woods",
"tag.item.c.sulfur_ores": "Sulfur Ores",
"tag.item.c.ores.sulfurs": "Ores of Sulfurs",
"tag.item.c.sulfurs": "Sulfurs",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,39 +19,43 @@ protected CinderscapesBiomeTagProvider(FabricDataOutput output, CompletableFutur
@Override
public void configure(RegistryWrapper.WrapperLookup registries) {
/*
* Vanilla and Conventional biome categories
* Vanilla biome tags
*/
getOrCreateTagBuilder(BiomeTags.IS_NETHER)
.addOptional(CinderscapesBiomes.ASHY_SHOALS)
.addOptional(CinderscapesBiomes.BLACKSTONE_SHALES)
.addOptional(CinderscapesBiomes.LUMINOUS_GROVE)
.addOptional(CinderscapesBiomes.QUARTZ_CAVERN);
.addOptional(CinderscapesBiomes.ASHY_SHOALS)
.addOptional(CinderscapesBiomes.BLACKSTONE_SHALES)
.addOptional(CinderscapesBiomes.LUMINOUS_GROVE)
.addOptional(CinderscapesBiomes.QUARTZ_CAVERN);

getOrCreateTagBuilder(ConventionalBiomeTags.IS_NETHER_FOREST)
.addOptional(CinderscapesBiomes.LUMINOUS_GROVE);

getOrCreateTagBuilder(ConventionalBiomeTags.IS_WASTELAND)
.addOptional(CinderscapesBiomes.ASHY_SHOALS);
/*
* Conventional biome tags
*/
getOrCreateTagBuilder(ConventionalBiomeTags.IS_NETHER_FOREST)
.addOptional(CinderscapesBiomes.LUMINOUS_GROVE);

getOrCreateTagBuilder(ConventionalBiomeTags.IS_VEGETATION_SPARSE)
.addOptional(CinderscapesBiomes.BLACKSTONE_SHALES);
.addOptional(CinderscapesBiomes.BLACKSTONE_SHALES);

getOrCreateTagBuilder(ConventionalBiomeTags.IS_WASTELAND)
.addOptional(CinderscapesBiomes.ASHY_SHOALS);


/*
* Biome structure generation tags
*/
getOrCreateTagBuilder(BiomeTags.BASTION_REMNANT_HAS_STRUCTURE)
.addOptional(CinderscapesBiomes.ASHY_SHOALS)
.addOptional(CinderscapesBiomes.LUMINOUS_GROVE);
.addOptional(CinderscapesBiomes.ASHY_SHOALS)
.addOptional(CinderscapesBiomes.LUMINOUS_GROVE);

getOrCreateTagBuilder(BiomeTags.NETHER_FORTRESS_HAS_STRUCTURE)
.addOptional(CinderscapesBiomes.BLACKSTONE_SHALES);
.addOptional(CinderscapesBiomes.BLACKSTONE_SHALES);

getOrCreateTagBuilder(BiomeTags.NETHER_FOSSIL_HAS_STRUCTURE)
.addOptional(CinderscapesBiomes.ASHY_SHOALS)
.addOptional(CinderscapesBiomes.BLACKSTONE_SHALES);
.addOptional(CinderscapesBiomes.ASHY_SHOALS)
.addOptional(CinderscapesBiomes.BLACKSTONE_SHALES);

getOrCreateTagBuilder(BiomeTags.RUINED_PORTAL_NETHER_HAS_STRUCTURE)
.addOptional(CinderscapesBiomes.ASHY_SHOALS);
.addOptional(CinderscapesBiomes.ASHY_SHOALS);
}
}
Loading

0 comments on commit 9ab36fd

Please sign in to comment.