Skip to content

Commit b9127a5

Browse files
committed
Messy Mixins
- Fix mixin conflict with imm portals
1 parent bc335dd commit b9127a5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ repositories {
151151
dependencies {
152152
jarJar(modImplementation("com.tterrag.registrate:Registrate:${registrate_version}"))
153153
jarJar("net.createmod.ponder:Ponder-Forge-${minecraft_version}:${ponder_version}")
154-
154+
155155
implementation(jarJar("io.github.llamalad7:mixinextras-forge:${mixin_extras_version}"))
156156

157157
modCompileOnly("dev.engine-room.flywheel:flywheel-forge-api-${flywheel_minecraft_version}:${flywheel_version}")

Diff for: src/main/java/com/simibubi/create/foundation/mixin/EntityMixin.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import net.minecraft.world.entity.Entity;
1313
import net.minecraft.world.entity.Pose;
1414

15-
@Mixin(Entity.class)
15+
@Mixin(value = Entity.class, priority = 1500)
1616
public class EntityMixin {
1717
@ModifyExpressionValue(method = "canEnterPose", at = @At(value = "INVOKE", target = "Lnet/minecraft/world/level/Level;noCollision(Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Z"))
1818
public boolean create$playerHidingAsBoxIsCrouchingNotSwimming(boolean original, @Local(argsOnly = true) Pose pose) {

0 commit comments

Comments
 (0)