aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/moe/nea/firmament/mixins/PlayerDropEventPatch.java
blob: b20c223daa7c20b0ad28caa291cd2a9cb663d862 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package moe.nea.firmament.mixins;

import moe.nea.firmament.events.IsSlotProtectedEvent;
import net.minecraft.client.network.ClientPlayerEntity;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.screen.slot.Slot;
import net.minecraft.screen.slot.SlotActionType;
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;

@Mixin(ClientPlayerEntity.class)
public abstract class PlayerDropEventPatch extends PlayerEntity {
	public PlayerDropEventPatch() {
		super(null, null, 0, null);
	}

	@Inject(method = "dropSelectedItem", at = @At("HEAD"), cancellable = true)
	public void onDropSelectedItem(boolean entireStack, CallbackInfoReturnable<Boolean> cir) {
		Slot fakeSlot = new Slot(getInventory(), getInventory().selectedSlot, 0, 0);
		if (IsSlotProtectedEvent.shouldBlockInteraction(fakeSlot, SlotActionType.THROW, IsSlotProtectedEvent.MoveOrigin.DROP_FROM_HOTBAR)) {
			cir.setReturnValue(false);
		}
	}
}