mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-28 15:38:00 +01:00
12 lines
350 B
Java
12 lines
350 B
Java
package com.minelittlepony.unicopia.mixin;
|
|
|
|
import org.spongepowered.asm.mixin.Mixin;
|
|
import org.spongepowered.asm.mixin.gen.Accessor;
|
|
|
|
import net.minecraft.entity.projectile.PersistentProjectileEntity;
|
|
|
|
@Mixin(PersistentProjectileEntity.class)
|
|
public interface MixinPersistentProjectileEntity {
|
|
@Accessor("inGround")
|
|
boolean isInGround();
|
|
}
|