mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-12-01 08:47:59 +01:00
16 lines
493 B
Java
16 lines
493 B
Java
package com.minelittlepony.unicopia.mixin;
|
|
|
|
import org.spongepowered.asm.mixin.Mixin;
|
|
import org.spongepowered.asm.mixin.gen.Invoker;
|
|
|
|
import net.minecraft.block.BlockState;
|
|
import net.minecraft.entity.FallingBlockEntity;
|
|
import net.minecraft.world.World;
|
|
|
|
@Mixin(FallingBlockEntity.class)
|
|
public interface MixinFallingBlockEntity {
|
|
@Invoker("<init>")
|
|
static FallingBlockEntity createInstance(World world, double x, double y, double z, BlockState state) {
|
|
return null;
|
|
}
|
|
}
|