fix refactor in mixin

This commit is contained in:
dfsek
2025-12-29 22:48:10 -07:00
parent bdcd93f164
commit 1bbedf51b5
@@ -56,17 +56,17 @@ public abstract class BlockStateArgumentMixin implements Predicate<CachedBlockPo
} }
@Intrinsic @Intrinsic
public BlockType terra$getBlockType() { public BlockType terra$blockType() {
return ((com.dfsek.terra.api.block.state.BlockState) getBlockState()).blockType(); return ((com.dfsek.terra.api.block.state.BlockState) getBlockState()).blockType();
} }
@Intrinsic @Intrinsic
public String terra$getAsString(boolean properties) { public String terra$asString(boolean properties) {
return ((com.dfsek.terra.api.block.state.BlockState) getBlockState()).asString(properties); return ((com.dfsek.terra.api.block.state.BlockState) getBlockState()).asString(properties);
} }
@Intrinsic @Intrinsic
public boolean terra$isAir() { public boolean terra$air() {
return ((com.dfsek.terra.api.block.state.BlockState) getBlockState()).air(); return ((com.dfsek.terra.api.block.state.BlockState) getBlockState()).air();
} }