Fix bad rename
This commit is contained in:
parent
bb5a3e2647
commit
7433eb7630
6 changed files with 7 additions and 7 deletions
|
@ -60,7 +60,7 @@ public class TileCable extends TileEntity
|
|||
private ArrayList<EnumFacing> sendingFace = new ArrayList<EnumFacing>();
|
||||
int ticksSinceLastChange = 0;
|
||||
|
||||
//MC calls this during world tick. Keep it, please.
|
||||
//MC calls this during world load. Keep it, please.
|
||||
public TileCable() {
|
||||
super();
|
||||
}
|
||||
|
|
|
@ -138,7 +138,7 @@ public class TileSolarPanel extends TilePowerAcceptor implements IToolDrop {
|
|||
if(tag.hasKey("panelType")){
|
||||
panel = EnumPanelType.values()[tag.getInteger("panelType")];
|
||||
} else {
|
||||
Core.logHelper.warn("A solar panel has failed to tick from NBT, it will not work correctly. Please break and replace it to fix the issue. BlockPos:" + pos.toString());
|
||||
Core.logHelper.warn("A solar panel has failed to load from NBT, it will not work correctly. Please break and replace it to fix the issue. BlockPos:" + pos.toString());
|
||||
panel = EnumPanelType.Basic;
|
||||
}
|
||||
super.readFromNBT(tag);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue