Skip to content

Commit

Permalink
Fix mixin name
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredlll08 committed Mar 31, 2022
1 parent ffe6eb8 commit 48efade
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -8,6 +8,6 @@
public interface AccessBiome {

@Invoker("getBiomeCategory")
Biome.BiomeCategory crafttwaeker$callGetBiomeCategory();
Biome.BiomeCategory crafttweaker$callGetBiomeCategory();

}
Expand Up @@ -45,7 +45,7 @@ public static boolean isHumid(Biome internal) {
@ZenCodeType.Getter("biomeCategory")
public static String getBiomeCategory(Biome internal) {

return ((AccessBiome) (Object) internal).crafttwaeker$callGetBiomeCategory().getName().toLowerCase();
return ((AccessBiome) (Object) internal).crafttweaker$callGetBiomeCategory().getName().toLowerCase();
}

@ZenCodeType.Getter("doesRain")
Expand Down

0 comments on commit 48efade

Please sign in to comment.