blob: 12455f4b0a347487982aa141884d060ee2747105 (
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
29
30
31
|
package moe.nea.firmament.mixins;
import moe.nea.firmament.features.fixes.Fixes;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.entity.player.PlayerInventory;
import net.minecraft.screen.PlayerScreenHandler;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Unique;
import org.spongepowered.asm.mixin.injection.At;
import org.spongepowered.asm.mixin.injection.Inject;
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
@Mixin(PlayerScreenHandler.class)
public class MixinPlayerScreenHandler {
@Unique
private static final int OFF_HAND_SLOT = 40;
@Inject(method = "<init>", at = @At("TAIL"))
private void moveOffHandSlot(PlayerInventory inventory, boolean onServer, PlayerEntity owner, CallbackInfo ci) {
if (Fixes.TConfig.INSTANCE.getHideOffHand()) {
PlayerScreenHandler self = (PlayerScreenHandler) (Object) this;
self.slots.stream()
.filter(slot -> slot.getIndex() == OFF_HAND_SLOT)
.forEach(slot -> {
slot.x = -1000;
slot.y = -1000;
});
}
}
}
|