Fixes #263
This commit is contained in:
parent
276bf8355f
commit
08cbe33f00
9 changed files with 4 additions and 4 deletions
|
@ -71,9 +71,9 @@ public class BlockMachineCasing extends BlockMultiblockBase {
|
|||
this.icons = new IIcon[types.length][16];
|
||||
if (!ConfigTechReborn.useConnectedTextures) {
|
||||
for (int i = 0; i < types.length; i++) {
|
||||
for (int j = 0; j < 15; j++) {
|
||||
for (int j = 0; j < 16; j++) {
|
||||
icons[i][j] = iconRegister.registerIcon("techreborn:" + "machine/casing"
|
||||
+ types[i]);
|
||||
+ types[i] + "_full");
|
||||
}
|
||||
}
|
||||
return;
|
||||
|
|
|
@ -32,7 +32,7 @@ public class BlockLesuStorage extends BlockMachineBase {
|
|||
this.icons = new IIcon[1][16];
|
||||
// up down left right
|
||||
if (!ConfigTechReborn.useConnectedTextures) {
|
||||
for (int j = 0; j < 15; j++) {
|
||||
for (int j = 0; j < 16; j++) {
|
||||
icons[0][j] = iconRegister.registerIcon("techreborn:" + "machine/lesu_block");
|
||||
}
|
||||
return;
|
||||
|
|
|
@ -673,7 +673,7 @@ public class ConfigTechReborn {
|
|||
true, StatCollector.translateToLocal("config.techreborn.connectTextures.tooltip")).getBoolean(true);
|
||||
|
||||
oreUnifer = config.get(CATEGORY_INTEGRATION, StatCollector.translateToLocal("config.techreborn.oreUnifer"),
|
||||
true, StatCollector.translateToLocal("config.techreborn.oreUnifer.tooltip")).getBoolean(false);
|
||||
false, StatCollector.translateToLocal("config.techreborn.oreUnifer.tooltip")).getBoolean(false);
|
||||
|
||||
//Integration
|
||||
AllowBOPRecipes = config.get(CATEGORY_INTEGRATION, StatCollector.translateToLocal("config.techreborn.allowBopRecipes"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue