updated comment

This commit is contained in:
Leijurv 2018-08-02 14:04:20 -04:00
parent e7fcd32440
commit 13d9ba2f87
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ import net.minecraft.client.Minecraft;
import net.minecraft.util.math.BlockPos;
public class BlockStateInterface {
public static IBlockState get(BlockPos pos) { // wrappers for future 1.13 compat
public static IBlockState get(BlockPos pos) { // wrappers for future chunk caching capability
return Minecraft.getMinecraft().world.getBlockState(pos);
}