mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-20 03:44:23 +01:00
Fixed tilled clouds having the wrong sound type
This commit is contained in:
parent
1289ed16fd
commit
4c2c8f8bf3
1 changed files with 3 additions and 0 deletions
|
@ -7,6 +7,7 @@ import javax.annotation.Nullable;
|
||||||
import com.minelittlepony.unicopia.CloudType;
|
import com.minelittlepony.unicopia.CloudType;
|
||||||
import com.minelittlepony.unicopia.UBlocks;
|
import com.minelittlepony.unicopia.UBlocks;
|
||||||
|
|
||||||
|
import net.minecraft.block.SoundType;
|
||||||
import net.minecraft.block.state.IBlockState;
|
import net.minecraft.block.state.IBlockState;
|
||||||
import net.minecraft.entity.Entity;
|
import net.minecraft.entity.Entity;
|
||||||
import net.minecraft.entity.player.EntityPlayer;
|
import net.minecraft.entity.player.EntityPlayer;
|
||||||
|
@ -21,6 +22,8 @@ public class BlockCloudFarm extends UFarmland implements ICloudBlock {
|
||||||
|
|
||||||
public BlockCloudFarm(String domain, String name) {
|
public BlockCloudFarm(String domain, String name) {
|
||||||
super(domain, name);
|
super(domain, name);
|
||||||
|
|
||||||
|
setSoundType(SoundType.CLOTH);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue