Skip to content

Commit

Permalink
Disable redstone control on the superchest/quantumchest itself (#3762)
Browse files Browse the repository at this point in the history
Co-authored-by: Martin Robertz <[email protected]>
Co-authored-by: Maya <[email protected]>
  • Loading branch information
3 people authored Jan 8, 2025
1 parent 180149a commit b947c9b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ public boolean onSolderingToolRightClick(ForgeDirection side, ForgeDirection wre
@Override
public void onPostTick(IGregTechTileEntity aBaseMetaTileEntity, long aTimer) {

if (getBaseMetaTileEntity().isServerSide() && getBaseMetaTileEntity().isAllowedToWork()) {
if (getBaseMetaTileEntity().isServerSide()) {
if ((getItemCount() <= 0)) {
setItemStack(null);
setItemCount(0);
Expand Down

0 comments on commit b947c9b

Please sign in to comment.