mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-20 11:54:23 +01:00
17 lines
493 B
Java
17 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;
|
||
|
}
|
||
|
}
|