Typo initalize
This commit is contained in:
parent
ea1ff1dce1
commit
741333db39
3 changed files with 3 additions and 3 deletions
|
@ -1088,7 +1088,7 @@ public class DualityInterface implements IGridTickable, ISegmentedInventory, ISt
|
|||
return (te.zCoord << 24) ^ (te.xCoord << 8) ^ te.yCoord;
|
||||
}
|
||||
|
||||
public void initalize()
|
||||
public void initialize()
|
||||
{
|
||||
updateCraftingList();
|
||||
}
|
||||
|
|
|
@ -66,7 +66,7 @@ public class PartInterface extends PartBasicState implements IGridTickable, ISeg
|
|||
public void addToWorld()
|
||||
{
|
||||
super.addToWorld();
|
||||
duality.initalize();
|
||||
duality.initialize();
|
||||
}
|
||||
|
||||
@MENetworkEventSubscribe
|
||||
|
|
|
@ -125,7 +125,7 @@ public class TileInterface extends AENetworkInvTile implements IGridTickable, IS
|
|||
{
|
||||
gridProxy.setValidSides( EnumSet.complementOf( EnumSet.of( pointAt ) ) );
|
||||
super.onReady();
|
||||
duality.initalize();
|
||||
duality.initialize();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue