Skip to content

Commit

Permalink
Rename grass path to dirt path again
Browse files Browse the repository at this point in the history
Since I have had code revert AGAIN, let's see if GitHub gets a fucking clue if I tell it a bunch of times to not forget

tile.etfuturum.dirt_path.name=Dirt Path
tile.etfuturum.dirt_path.name=Dirt Path
tile.etfuturum.dirt_path.name=Dirt Path
tile.etfuturum.dirt_path.name=Dirt Path
tile.etfuturum.dirt_path.name=Dirt Path
tile.etfuturum.dirt_path.name=Dirt Path
tile.etfuturum.dirt_path.name=Dirt Path
tile.etfuturum.dirt_path.name=Dirt Path
tile.etfuturum.dirt_path.name=Dirt Path
tile.etfuturum.dirt_path.name=Dirt Path
tile.etfuturum.dirt_path.name=Dirt Path
tile.etfuturum.dirt_path.name=Dirt Path
tile.etfuturum.dirt_path.name=Dirt Path
tile.etfuturum.dirt_path.name=Dirt Path
tile.etfuturum.dirt_path.name=Dirt Path
tile.etfuturum.dirt_path.name=Dirt Path
tile.etfuturum.dirt_path.name=Dirt Path
tile.etfuturum.dirt_path.name=Dirt Path
tile.etfuturum.dirt_path.name=Dirt Path
tile.etfuturum.dirt_path.name=Dirt Path
tile.etfuturum.dirt_path.name=Dirt Path
tile.etfuturum.dirt_path.name=Dirt Path
tile.etfuturum.dirt_path.name=Dirt Path
tile.etfuturum.dirt_path.name=Dirt Path
tile.etfuturum.dirt_path.name=Dirt Path

IS THAT ENOUGH TO NOT REVERT IT?
  • Loading branch information
Roadhog360 committed Dec 23, 2023
1 parent 35f4ae1 commit a8c5912
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/main/java/ganymedes01/etfuturum/ModBlocks.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public enum ModBlocks {
PURPUR_BLOCK(ConfigBlocksItems.enableChorusFruit, new BlockPurpur()),
PURPUR_PILLAR(ConfigBlocksItems.enableChorusFruit, new BlockPurpurPillar()),
END_BRICKS(ConfigBlocksItems.enableChorusFruit, new BlockEndBricks()),
GRASS_PATH(ConfigBlocksItems.enableGrassPath, new BlockGrassPath()),
GRASS_PATH(ConfigBlocksItems.enableGrassPath, new BlockDirtPath()),
END_ROD(ConfigBlocksItems.enableChorusFruit, new BlockEndRod()),
CHORUS_PLANT(ConfigBlocksItems.enableChorusFruit, new BlockChorusPlant()),
CHORUS_FLOWER(ConfigBlocksItems.enableChorusFruit, new BlockChorusFlower()),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@

import java.util.Random;

public class BlockGrassPath extends Block {
public class BlockDirtPath extends Block {

@SideOnly(Side.CLIENT)
private IIcon sideIcon;

public BlockGrassPath() {
public BlockDirtPath() {
super(Material.grass);
setHardness(0.6F);
setLightOpacity(255);
setHarvestLevel("shovel", 0);
useNeighborBrightness = true;
setStepSound(soundTypeGrass);
setBlockTextureName("grass_path");
setBlockName(Utils.getUnlocalisedName("grass_path"));
setBlockTextureName("dirt_path");
setBlockName(Utils.getUnlocalisedName("dirt_path"));
setCreativeTab(EtFuturum.creativeTabBlocks);
setBlockBounds(0.0F, 0.0F, 0.0F, 1.0F, 0.9375F, 1.0F);
}
Expand Down Expand Up @@ -68,7 +68,7 @@ public void onNeighborBlockChange(World world, int x, int y, int z, Block block)
@SideOnly(Side.CLIENT)
public boolean shouldSideBeRendered(IBlockAccess p_149646_1_, int p_149646_2_, int p_149646_3_, int p_149646_4_, int p_149646_5_) {
Block block = p_149646_1_.getBlock(p_149646_2_, p_149646_3_, p_149646_4_);
if (block instanceof BlockGrassPath || block instanceof BlockFarmland) {
if (block instanceof BlockDirtPath || block instanceof BlockFarmland) {
return false;
}
return super.shouldSideBeRendered(p_149646_1_, p_149646_2_, p_149646_3_, p_149646_4_, p_149646_5_);
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/assets/etfuturum/lang/de_DE.lang
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ tile.etfuturum.purpur_stairs.name=Purpurtreppe
tile.etfuturum.end_bricks.name=Endsteinziegel
tile.etfuturum.end_brick_slab.name=Endsteinziegelstufe
tile.etfuturum.end_brick_stairs.name=Endsteinziegeltreppe
tile.etfuturum.grass_path.name=Trampelpfad
tile.etfuturum.dirt_path.name=Trampelpfad
tile.etfuturum.end_rod.name=Endstab
tile.etfuturum.chorus_flower.name=Chorusblüte
tile.etfuturum.chorus_plant.name=Choruspflanze
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/assets/etfuturum/lang/en_US.lang
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ tile.etfuturum.purpur_stairs.name=Purpur Stairs
tile.etfuturum.end_bricks.name=End Stone Bricks
tile.etfuturum.end_brick_slab.name=End Stone Brick Slab
tile.etfuturum.end_brick_stairs.name=End Stone Brick Stairs
tile.etfuturum.grass_path.name=Grass Path
tile.etfuturum.dirt_path.name=Dirt Path
tile.etfuturum.end_rod.name=End Rod
tile.etfuturum.chorus_flower.name=Chorus Flower
tile.etfuturum.chorus_plant.name=Chorus Plant
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/assets/etfuturum/lang/pt_BR.lang
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ tile.etfuturum.purpur_slab.name=Laje de Bloco de Purpur
tile.etfuturum.purpur_pillar.name=Pilar de Bloco de Purpur
tile.etfuturum.purpur_stairs.name=Escadas de Bloco de Purpur
tile.etfuturum.end_bricks.name=Tijolos de Pedra do Fim
tile.etfuturum.grass_path.name=Caminho de Grama
tile.etfuturum.dirt_path.name=Caminho de Grama
tile.etfuturum.end_rod.name=Vara Ender
tile.etfuturum.chorus_flower.name=Flor Chorus
tile.etfuturum.chorus_plant.name=Planta Chorus
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/assets/etfuturum/lang/pt_PT.lang
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ tile.etfuturum.purpur_slab.name=Laje de Purpur
tile.etfuturum.purpur_pillar.name=Pilar de Purpur
tile.etfuturum.purpur_stairs.name=Escadas de Purpur
tile.etfuturum.end_bricks.name=Tijolos de Pedra do Fim
tile.etfuturum.grass_path.name=Caminho de Grama
tile.etfuturum.dirt_path.name=Caminho de Grama
tile.etfuturum.end_rod.name=Vara do Fim
tile.etfuturum.chorus_flower.name=Flor-de-Coro
tile.etfuturum.chorus_plant.name=Planta-do-Coro
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/assets/etfuturum/lang/ru_RU.lang
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ tile.etfuturum.purpur_stairs.name=Пурпурные ступеньки
tile.etfuturum.end_bricks.name=Эндерняковые кирпичи
tile.etfuturum.end_brick_slab.name=Плита из эндернякового кирпича
tile.etfuturum.end_brick_stairs.name=Ступеньки из эндернякового кирпича
tile.etfuturum.grass_path.name=Травяная тропинка
tile.etfuturum.dirt_path.name=Травяная тропинка
tile.etfuturum.end_rod.name=Стержень Края
tile.etfuturum.chorus_flower.name=Цветок хоруса
tile.etfuturum.chorus_plant.name=Растение хоруса
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/assets/etfuturum/lang/zh_CN.lang
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ tile.etfuturum.purpur_stairs.name=紫珀楼梯
tile.etfuturum.end_bricks.name=末地石砖
tile.etfuturum.end_brick_slab.name=末地石砖台阶
tile.etfuturum.end_brick_stairs.name=末地石砖楼梯
tile.etfuturum.grass_path.name=草径
tile.etfuturum.dirt_path.name=草径
tile.etfuturum.end_rod.name=末地烛
tile.etfuturum.chorus_flower.name=紫颂花
tile.etfuturum.chorus_plant.name=紫颂植物
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/assets/etfuturum/lang/zh_TW.lang
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ tile.etfuturum.purpur_slab.name=紫珀台階
tile.etfuturum.purpur_pillar.name=豎紋紫珀塊
tile.etfuturum.purpur_stairs.name=紫珀樓梯
tile.etfuturum.end_bricks.name=終界石磚
tile.etfuturum.grass_path.name=草徑
tile.etfuturum.dirt_path.name=草徑
tile.etfuturum.end_rod.name=末地燭
tile.etfuturum.chorus_flower.name=紫影花
tile.etfuturum.chorus_plant.name=紫影植物
Expand Down

0 comments on commit a8c5912

Please sign in to comment.