Prevent notification of neighbors when an FMP part is removed from the world.

This commit is contained in:
AlgorithmX2 2014-08-11 19:44:48 -05:00
parent 01b3292d30
commit 410cc6172d

View file

@ -482,7 +482,8 @@ public class CableBusPart extends JCuboidPart implements JNormalOcclusion, IReds
@Override
public void partChanged()
{
notifyNeighbors();
if ( isInWorld() )
notifyNeighbors();
}
@Override