This commit is contained in:
PrototypeTrousers
2021-10-21 12:22:00 -03:00
parent e41b6943aa
commit 75843e802d
3 changed files with 43 additions and 35 deletions
@@ -19,6 +19,7 @@
package appeng.me.storage;
import appeng.core.features.registries.cell.CreativeCellHandler;
import appeng.me.GridAccessException;
import appeng.me.helpers.MachineSource;
import appeng.tile.storage.TileDrive;
@@ -73,7 +74,7 @@ public class DriveWatcher<T extends IAEStack<T>> extends MEInventoryHandler<T>
this.drive.blinkCell( this.getSlot() );
this.oldStatus = newStatus;
}
if (this.drive.getProxy().isActive())
if (this.drive.getProxy().isActive() && !(handler instanceof CreativeCellHandler))
{
try
{
@@ -102,7 +103,7 @@ public class DriveWatcher<T extends IAEStack<T>> extends MEInventoryHandler<T>
this.drive.blinkCell( this.getSlot() );
this.oldStatus = newStatus;
}
if (this.drive.getProxy().isActive())
if (this.drive.getProxy().isActive() && !(handler instanceof CreativeCellHandler ))
{
try
{