EroticDungeonGame/src/main/java/top/r3944realms/eroticdungeongame/mixin/minecraft/MixinLivingEntity.java
2026-01-21 15:50:59 +08:00

39 lines
1.5 KiB
Java

/*
* Copyright 2025-2026 R3944Realms
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package top.r3944realms.eroticdungeongame.mixin.minecraft;
import com.llamalad7.mixinextras.injector.wrapoperation.Operation;
import com.llamalad7.mixinextras.injector.wrapoperation.WrapOperation;
import net.minecraft.world.entity.LivingEntity;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.injection.At;
import top.r3944realms.eroticdungeongame.api.workspace.Services;
@Mixin(LivingEntity.class)
public class MixinLivingEntity {
@WrapOperation(
method = "baseTick",
at = @At(
value = "INVOKE",
target= "Lnet/minecraft/world/entity/LivingEntity;isInWall()Z"
)
)
private boolean inWall$Warp(LivingEntity instance, Operation<Boolean> original) {
return Services.WORK_SPACE.tryToDoIfInDeviceAndRet(instance, data -> false, () -> original.call(instance));
}
}