mirror of
https://codeberg.org/moonleay/Gimbal.git
synced 2025-04-04 11:44:13 +02:00
31 lines
1 KiB
Java
31 lines
1 KiB
Java
package net.moonleay.gimble.mixin;
|
|
|
|
import net.minecraft.block.BlockState;
|
|
import net.minecraft.item.BlockItem;
|
|
import net.minecraft.item.ItemPlacementContext;
|
|
import net.moonleay.gimble.editor.ServerEditorManager;
|
|
import net.moonleay.gimble.editor.state.mode.Capability;
|
|
import org.spongepowered.asm.mixin.Mixin;
|
|
import org.spongepowered.asm.mixin.injection.At;
|
|
import org.spongepowered.asm.mixin.injection.Inject;
|
|
import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;
|
|
|
|
import java.util.UUID;
|
|
|
|
@Mixin(BlockItem.class)
|
|
public class ForcePlaceMixin {
|
|
|
|
@Inject(method = "canPlace", at = @At("HEAD"), cancellable = true)
|
|
private void func(ItemPlacementContext context, BlockState state, CallbackInfoReturnable<Boolean> cir) {
|
|
if (context.getPlayer() == null) {
|
|
return;
|
|
}
|
|
UUID id = context.getPlayer().getGameProfile().getId();
|
|
|
|
if (!ServerEditorManager.INSTANCE.shouldPlayer(id, Capability.FORCE_PLACE)) {
|
|
return;
|
|
}
|
|
cir.setReturnValue(true);
|
|
cir.cancel();
|
|
}
|
|
}
|