Add stone variants for the other end ores.
This commit is contained in:
parent
f1a3387fbf
commit
06f7f64efb
5 changed files with 33 additions and 0 deletions
|
@ -16,6 +16,15 @@ public class OreBlockStateManager {
|
|||
if (OreBlockStateManager.endOreStone && name.equals("tungsten")) {
|
||||
name = "tungsten_stone";
|
||||
}
|
||||
if (OreBlockStateManager.endOreStone && name.equals("peridot")) {
|
||||
name = "peridot_stone";
|
||||
}
|
||||
if (OreBlockStateManager.endOreStone && name.equals("sheldonite")) {
|
||||
name = "sheldonite_stone";
|
||||
}
|
||||
if (OreBlockStateManager.endOreStone && name.equals("sodalite")) {
|
||||
name = "sodalite_stone";
|
||||
}
|
||||
return name;
|
||||
}
|
||||
|
||||
|
@ -23,6 +32,15 @@ public class OreBlockStateManager {
|
|||
if (name.equals("tungsten_stone")) {
|
||||
name = "tungsten";
|
||||
}
|
||||
if (name.equals("peridot_stone")) {
|
||||
name = "peridot";
|
||||
}
|
||||
if (name.equals("sheldonite_stone")) {
|
||||
name = "sheldonite";
|
||||
}
|
||||
if (name.equals("sodalite_stone")) {
|
||||
name = "sodalite";
|
||||
}
|
||||
return name;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -65,16 +65,31 @@
|
|||
"all": "techreborn:blocks/ore/sheldonite_ore"
|
||||
}
|
||||
},
|
||||
"sheldonite_stone": {
|
||||
"textures": {
|
||||
"all": "techreborn:blocks/ore/sheldonite_ore_stone"
|
||||
}
|
||||
},
|
||||
"peridot": {
|
||||
"textures": {
|
||||
"all": "techreborn:blocks/ore/peridot_ore"
|
||||
}
|
||||
},
|
||||
"peridot_stone": {
|
||||
"textures": {
|
||||
"all": "techreborn:blocks/ore/peridot_ore_stone"
|
||||
}
|
||||
},
|
||||
"sodalite": {
|
||||
"textures": {
|
||||
"all": "techreborn:blocks/ore/sodalite_ore"
|
||||
}
|
||||
},
|
||||
"sodalite_stone": {
|
||||
"textures": {
|
||||
"all": "techreborn:blocks/ore/sodalite_ore_stone"
|
||||
}
|
||||
},
|
||||
"lead": {
|
||||
"textures": {
|
||||
"all": "techreborn:blocks/ore/lead_ore"
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 385 B |
Binary file not shown.
After Width: | Height: | Size: 394 B |
Binary file not shown.
After Width: | Height: | Size: 390 B |
Loading…
Reference in a new issue