
net.minecraft.server.BlockObsidian Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of walk-server Show documentation
Show all versions of walk-server Show documentation
A spigot fork to kotlin structure and news.
package net.minecraft.server;
import java.util.Random;
public class BlockObsidian extends Block {
public BlockObsidian() {
super(Material.STONE);
this.a(CreativeModeTab.b);
}
public Item getDropType(IBlockData iblockdata, Random random, int i) {
return Item.getItemOf(Blocks.OBSIDIAN);
}
public MaterialMapColor g(IBlockData iblockdata) {
return MaterialMapColor.E;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy