The Great Renamening of 2020
This commit is contained in:
+2
-2
@@ -31,8 +31,8 @@ import appeng.client.render.effects.ParticleTypes;
|
||||
import appeng.core.AEConfig;
|
||||
import appeng.core.AppEng;
|
||||
|
||||
public class BlockChargedQuartzOre extends BlockQuartzOre {
|
||||
public BlockChargedQuartzOre(Properties props) {
|
||||
public class ChargedQuartzOreBlock extends QuartzOreBlock {
|
||||
public ChargedQuartzOreBlock(Properties props) {
|
||||
super(props);
|
||||
}
|
||||
|
||||
+2
-2
@@ -25,9 +25,9 @@ import net.minecraft.util.Direction;
|
||||
|
||||
import appeng.helpers.AEGlassMaterial;
|
||||
|
||||
public class BlockQuartzGlass extends AbstractGlassBlock {
|
||||
public class QuartzGlassBlock extends AbstractGlassBlock {
|
||||
|
||||
public BlockQuartzGlass(Properties props) {
|
||||
public QuartzGlassBlock(Properties props) {
|
||||
super(props);
|
||||
}
|
||||
|
||||
+2
-2
@@ -30,9 +30,9 @@ import appeng.client.render.effects.ParticleTypes;
|
||||
import appeng.core.AEConfig;
|
||||
import appeng.core.AppEng;
|
||||
|
||||
public class BlockQuartzLamp extends BlockQuartzGlass {
|
||||
public class QuartzLampBlock extends QuartzGlassBlock {
|
||||
|
||||
public BlockQuartzLamp(Properties props) {
|
||||
public QuartzLampBlock(Properties props) {
|
||||
super(props);
|
||||
}
|
||||
|
||||
+2
-2
@@ -24,8 +24,8 @@ import net.minecraft.util.math.MathHelper;
|
||||
|
||||
import appeng.block.AEBaseBlock;
|
||||
|
||||
public class BlockQuartzOre extends AEBaseBlock {
|
||||
public BlockQuartzOre(Properties props) {
|
||||
public class QuartzOreBlock extends AEBaseBlock {
|
||||
public QuartzOreBlock(Properties props) {
|
||||
super(props);
|
||||
}
|
||||
|
||||
+2
-2
@@ -32,10 +32,10 @@ import appeng.api.util.IOrientableBlock;
|
||||
import appeng.decorative.AEDecorativeBlock;
|
||||
import appeng.helpers.MetaRotation;
|
||||
|
||||
public class BlockQuartzPillar extends AEDecorativeBlock implements IOrientableBlock {
|
||||
public class QuartzPillarBlock extends AEDecorativeBlock implements IOrientableBlock {
|
||||
public static final EnumProperty<Direction.Axis> AXIS = BlockStateProperties.AXIS;
|
||||
|
||||
public BlockQuartzPillar(Properties props) {
|
||||
public QuartzPillarBlock(Properties props) {
|
||||
super(props);
|
||||
|
||||
// The upwards facing pillar is the default (i.e. for the item model)
|
||||
+2
-2
@@ -35,12 +35,12 @@ import net.minecraftforge.eventbus.api.SubscribeEvent;
|
||||
import appeng.block.AEBaseBlock;
|
||||
import appeng.core.worlddata.WorldData;
|
||||
|
||||
public class BlockSkyStone extends AEBaseBlock {
|
||||
public class SkyStoneBlock extends AEBaseBlock {
|
||||
private static final float BREAK_SPEAK_SCALAR = 0.1f;
|
||||
private static final double BREAK_SPEAK_THRESHOLD = 7.0;
|
||||
private final SkystoneType type;
|
||||
|
||||
public BlockSkyStone(SkystoneType type, Properties props) {
|
||||
public SkyStoneBlock(SkystoneType type, Properties props) {
|
||||
super(props);
|
||||
this.type = type;
|
||||
|
||||
Reference in New Issue
Block a user