Skip to content

Commit

Permalink
Merge branch '1.19' into 1.19_itemless
Browse files Browse the repository at this point in the history
  • Loading branch information
sisby-folk committed May 25, 2023
2 parents 9a077bf + 7db3f5a commit 95f79c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ public static boolean biomeIsShore(RegistryEntry<Biome> biomeTag) {
}

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public static boolean biomeIsShore(RegistryEntry<Biome> biomeTag) {
return biomeTag.isIn(ConventionalBiomeTags.BEACH);
}

private static boolean biomeIsJungle(RegistryEntry<Biome> biomeTag) {
public static boolean biomeIsJungle(RegistryEntry<Biome> biomeTag) {
return biomeTag.isIn(ConventionalBiomeTags.JUNGLE) || biomeTag.isIn(ConventionalBiomeTags.TREE_JUNGLE);
}

Expand Down

0 comments on commit 95f79c7

Please sign in to comment.