Skip to content

Commit

Permalink
Fix mixin.
Browse files Browse the repository at this point in the history
  • Loading branch information
Crystal-Spider committed Feb 5, 2025
1 parent a65088a commit 5cdfb02
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
import net.minecraft.world.level.block.NetherPortalBlock;
import net.minecraft.world.level.block.state.BlockBehaviour;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraft.world.level.material.Material;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Unique;
import org.spongepowered.asm.mixin.injection.At;
Expand All @@ -27,7 +26,7 @@
@Mixin(NetherPortalBlock.class)
public abstract class NetherPortalBlockMixin extends Block {
private NetherPortalBlockMixin() {
super(BlockBehaviour.Properties.of(Material.PORTAL));
super(BlockBehaviour.Properties.of());
}

/**
Expand Down

0 comments on commit 5cdfb02

Please sign in to comment.