Skip to content

Commit

Permalink
Revert "Fix Incomplete Interoperability With Quickshulker" (#60)
Browse files Browse the repository at this point in the history
Revert "Fix Incomplete Interoperability With Quickshulker (#59)"

This reverts commit 50c349d.
  • Loading branch information
Aton-Kish committed Jul 7, 2023
1 parent 50c349d commit 18a756c
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package atonkish.reinfshulker.block;

import net.kyrptonaught.shulkerutils.UpgradableShulker;
import net.minecraft.block.AbstractBlock;
import net.minecraft.block.Block;
import net.minecraft.block.BlockState;
Expand Down Expand Up @@ -28,7 +27,7 @@
import atonkish.reinfshulker.block.entity.ReinforcedShulkerBoxBlockEntity;
import atonkish.reinfshulker.stat.ModStats;

public class ReinforcedShulkerBoxBlock extends ShulkerBoxBlock implements UpgradableShulker {
public class ReinforcedShulkerBoxBlock extends ShulkerBoxBlock {
private final ReinforcingMaterial material;

public ReinforcedShulkerBoxBlock(ReinforcingMaterial material, @Nullable DyeColor color,
Expand Down Expand Up @@ -95,9 +94,4 @@ public ReinforcingMaterial getMaterial() {
public static ItemStack getItemStack(ReinforcingMaterial material, @Nullable DyeColor color) {
return new ItemStack(get(material, color));
}

@Override
public int getInventorySize() {
return getMaterial().getSize();
}
}

0 comments on commit 18a756c

Please sign in to comment.