Fix tooltip for cables and typo for solar panels.

This commit is contained in:
drcrazy 2019-09-27 16:42:17 +03:00
parent f77bc65316
commit 106b8e25ba
4 changed files with 23 additions and 14 deletions

View file

@ -50,7 +50,7 @@ import techreborn.blockentity.machine.tier1.*;
import techreborn.blockentity.machine.tier3.*;
import techreborn.blockentity.storage.AdjustableSUBlockEntity;
import techreborn.blocks.*;
import techreborn.blocks.cable.BlockCable;
import techreborn.blocks.cable.CableBlock;
import techreborn.blocks.generator.*;
import techreborn.blocks.lighting.BlockLamp;
import techreborn.blocks.storage.*;
@ -258,7 +258,7 @@ public class TRContent {
public final String name;
public final BlockCable block;
public final CableBlock block;
public int transferRate;
public int defaultTransferRate;
@ -276,7 +276,7 @@ public class TRContent {
this.canKill = canKill;
this.defaultCanKill = canKill;
this.tier = tier;
this.block = new BlockCable(this);
this.block = new CableBlock(this);
InitUtils.setup(block, name + "_cable");
}