Fixed #477 reactor plasma not rendering
This commit is contained in:
parent
b8392d3a0d
commit
ded7147bcb
1 changed files with 2 additions and 1 deletions
|
@ -781,7 +781,8 @@ public class TileEntityEnanReactorCore extends TileEntityEnanReactorController {
|
|||
super.readFromNBT(tagCompound);
|
||||
|
||||
// skip empty NBT on placement to use defaults values
|
||||
if (!tagCompound.hasKey("outputMode")) {
|
||||
if ( (world == null || !world.isRemote)
|
||||
&& !tagCompound.hasKey("outputMode") ) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue