Skip to content

Commit

Permalink
restrict carpet-fixes with conditional mixin
Browse files Browse the repository at this point in the history
  • Loading branch information
topi-banana committed Oct 6, 2024
1 parent adaa40f commit 063c1b7
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@
import org.spongepowered.asm.mixin.injection.At;
import org.spongepowered.asm.mixin.injection.Redirect;

@Restriction(require = @Condition(value = "minecraft", versionPredicates = "<=1.21.1"))
@Restriction(
require = @Condition(value = "minecraft", versionPredicates = "<=1.21.1"),
conflict = @Condition(value = "carpet-fixes")
)
@Mixin(BeehiveBlockEntity.class)
public class MixinBeehiveBlockEntity {
@Redirect(
Expand Down

0 comments on commit 063c1b7

Please sign in to comment.