Skip to content

Commit

Permalink
Compile fix
Browse files Browse the repository at this point in the history
Fixed:
- Left an if-statement hanging
  • Loading branch information
dragonflame86 committed Dec 1, 2023
1 parent 1d5674b commit c9673e9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public class BackgroundRendererMixin {

RegistryEntry<Biome> biomeEntry = world.getBiome(entity.getBlockPos());

if(entity instanceof ClientPlayerEntity player && biomeEntry.isIn(BiomeTags.IS_OCEAN) && world.) {
if(entity instanceof ClientPlayerEntity player && biomeEntry.isIn(BiomeTags.IS_OCEAN)) {

}
}
Expand Down

0 comments on commit c9673e9

Please sign in to comment.