Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
leijurv committed Apr 7, 2016
1 parent 66e85d5 commit 3c3b380
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mcp918/src/minecraft/minebot/MineBot.java
Expand Up @@ -309,7 +309,7 @@ public static void clearPath() {
}
public static String info(BlockPos bp) {
Block block = Minecraft.theMinecraft.theWorld.getBlockState(bp).getBlock();
return bp + " " + block + " can walk on: " + Action.canWalkOn(bp) + " can walk through: " + Action.canWalkThrough(bp) + " is full block: " + block.isFullBlock() + " is full cube: " + block.isFullCube() + " is liquid: " + Action.isLiquid(block) + " is flow: " + Action.isFlowing(bp);
return bp + " " + block + " can walk on: " + Action.canWalkOn(bp) + " can walk through: " + Action.canWalkThrough(bp) + " is full block: " + block.isFullBlock() + " is full cube: " + block.isFullCube() + " is liquid: " + Action.isLiquid(block) + " is flow: " + Action.isFlowing(bp, Minecraft.theMinecraft.theWorld.getBlockState(bp));
}
/**
* Cancel the path
Expand Down

0 comments on commit 3c3b380

Please sign in to comment.