Skip to content

Commit

Permalink
fix biomeIsPlateau visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
sisby-folk committed Jul 7, 2023
1 parent 733485f commit d8b8ffc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ public static boolean biomeIsSavanna(RegistryEntry<Biome> biomeTag) {
}

@ExpectPlatform
private static boolean biomeIsPlateau(RegistryEntry<Biome> biomeTag) {
public static boolean biomeIsPlateau(RegistryEntry<Biome> biomeTag) {
return false;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public static boolean biomeIsBadlands(RegistryEntry<Biome> biomeTag) {
return biomeTag.isIn((ConventionalBiomeTags.BADLANDS)) || biomeTag.isIn((ConventionalBiomeTags.MESA));
}

private static boolean biomeIsPlateau(RegistryEntry<Biome> biomeTag) {
public static boolean biomeIsPlateau(RegistryEntry<Biome> biomeTag) {
return false; // None
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public static boolean biomeIsBadlands(RegistryEntry<Biome> biomeTag) {
return false; // None
}

private static boolean biomeIsPlateau(RegistryEntry<Biome> biomeTag) {
public static boolean biomeIsPlateau(RegistryEntry<Biome> biomeTag) {
return biomeTag.isIn((Tags.Biomes.IS_PLATEAU));
}

Expand Down

0 comments on commit d8b8ffc

Please sign in to comment.