blob: 95370b872bfbf3e51cbc092400210132eff667f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package kubatech.mixin.mixins.minecraft;
import net.minecraft.entity.EntityLivingBase;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.gen.Invoker;
@Mixin(value = EntityLivingBase.class)
public interface EntityLivingBaseAccessor {
@Invoker
void callDropFewItems(boolean recentlyHit, int lootingLevel);
@Invoker
void callDropRareDrop(int lootingLevel);
}
|