mirror of
https://github.com/barkeser2002/CatServer.git
synced 2026-09-25 08:00:02 +03:00
18 lines
519 B
Diff
18 lines
519 B
Diff
--- ../src-base/minecraft/net/minecraft/world/IBlockAccess.java
|
|
+++ ../src-work/minecraft/net/minecraft/world/IBlockAccess.java
|
|
@@ -28,4 +28,14 @@
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
WorldType getWorldType();
|
|
+
|
|
+ /**
|
|
+ * FORGE: isSideSolid, pulled up from {@link World}
|
|
+ *
|
|
+ * @param pos Position
|
|
+ * @param side Side
|
|
+ * @param _default default return value
|
|
+ * @return if the block is solid on the side
|
|
+ */
|
|
+ boolean isSideSolid(BlockPos pos, EnumFacing side, boolean _default);
|
|
}
|