Update changelog
This commit is contained in:
@@ -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)
|
||||||
|
|||||||
@@ -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;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user