Update changelog

This commit is contained in:
raoulvdberge
2017-03-01 14:03:52 +01:00
parent 535df7ec54
commit fcd9c0b618
2 changed files with 7 additions and 4 deletions

View File

@@ -3,6 +3,7 @@
### 1.4.2 ### 1.4.2
- Added integration for MCMultiPart, this is an optional dependency (raoulvdberge) - Added integration for MCMultiPart, this is an optional dependency (raoulvdberge)
- Fixed a crash with the Constructor (raoulvdberge) - Fixed a crash with the Constructor (raoulvdberge)
- Fixed Crafting Pattern model (pauljoda)
### 1.4.1 ### 1.4.1
- Added Storage Monitor (raoulvdberge) - Added Storage Monitor (raoulvdberge)

View File

@@ -19,6 +19,7 @@ import net.minecraft.world.Explosion;
import net.minecraft.world.IBlockAccess; import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World; import net.minecraft.world.World;
import javax.annotation.Nullable;
import java.util.Optional; import java.util.Optional;
public abstract class BlockNode extends BlockBase { public abstract class BlockNode extends BlockBase {
@@ -116,6 +117,11 @@ public abstract class BlockNode extends BlockBase {
return state; return state;
} }
public boolean hasConnectivityState() {
return false;
}
@Nullable
public static TileNode getNode(IBlockAccess world, BlockPos pos) { public static TileNode getNode(IBlockAccess world, BlockPos pos) {
TileEntity tile = world.getTileEntity(pos); TileEntity tile = world.getTileEntity(pos);
@@ -131,8 +137,4 @@ public abstract class BlockNode extends BlockBase {
return null; return null;
} }
public boolean hasConnectivityState() {
return false;
}
} }