try to fix reactor unburned after chunkloading
This commit is contained in:
parent
5781717e9e
commit
438ceb7145
2 changed files with 3 additions and 3 deletions
|
@ -108,7 +108,7 @@ public abstract class TileEntityReactorBlock extends TileEntityElectricBlock imp
|
|||
{
|
||||
if(getReactor() != null)
|
||||
{
|
||||
getReactor().formMultiblock(false);
|
||||
getReactor().formMultiblock(true);
|
||||
}
|
||||
else {
|
||||
updateController();
|
||||
|
@ -124,7 +124,7 @@ public abstract class TileEntityReactorBlock extends TileEntityElectricBlock imp
|
|||
|
||||
if(found != null && (found.getReactor() == null || !found.getReactor().isFormed()))
|
||||
{
|
||||
found.formMultiblock(false);
|
||||
found.formMultiblock(true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -146,7 +146,7 @@ public class TileEntityReactorController extends TileEntityReactorBlock implemen
|
|||
{
|
||||
super.onAdded();
|
||||
|
||||
formMultiblock(false);
|
||||
formMultiblock(true);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue