Typo moveable
This commit is contained in:
parent
8a3739d9bd
commit
2d5b15b461
5 changed files with 8 additions and 8 deletions
|
@ -679,7 +679,7 @@ public class Registration
|
|||
if ( AEConfig.instance.isFeatureEnabled( AEFeature.MeteoriteWorldGen ) )
|
||||
GameRegistry.registerWorldGenerator( new MeteoriteWorldGen(), 0 );
|
||||
|
||||
IMovableRegistry mr = AEApi.instance().registries().moveable();
|
||||
IMovableRegistry mr = AEApi.instance().registries().movable();
|
||||
|
||||
/**
|
||||
* You can't move bed rock.
|
||||
|
|
|
@ -20,7 +20,7 @@ public class IMCBlackListSpatial implements IIMCHandler
|
|||
Block blk = Block.getBlockFromItem( is.getItem() );
|
||||
if ( blk != null )
|
||||
{
|
||||
AEApi.instance().registries().moveable().blacklistBlock( blk );
|
||||
AEApi.instance().registries().movable().blacklistBlock( blk );
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ public class IMCSpatial implements IIMCHandler
|
|||
try
|
||||
{
|
||||
Class classInstance = Class.forName( m.getStringValue() );
|
||||
AEApi.instance().registries().moveable().whiteListTileEntity( classInstance );
|
||||
AEApi.instance().registries().movable().whiteListTileEntity( classInstance );
|
||||
}
|
||||
catch (ClassNotFoundException e)
|
||||
{
|
||||
|
|
|
@ -74,7 +74,7 @@ public class RegistryContainer implements IRegistryContainer
|
|||
}
|
||||
|
||||
@Override
|
||||
public IMovableRegistry moveable()
|
||||
public IMovableRegistry movable()
|
||||
{
|
||||
return MoveableReg;
|
||||
}
|
||||
|
|
|
@ -112,7 +112,7 @@ public class CachedPlane
|
|||
|
||||
World wrld;
|
||||
Block matrixFrame = AEApi.instance().blocks().blockMatrixFrame.block();
|
||||
IMovableRegistry reg = AEApi.instance().registries().moveable();
|
||||
IMovableRegistry reg = AEApi.instance().registries().movable();
|
||||
|
||||
LinkedList<WorldCoord> updates = new LinkedList<WorldCoord>();
|
||||
|
||||
|
@ -154,7 +154,7 @@ public class CachedPlane
|
|||
myColumns[x][z] = new Column( w.getChunkFromChunkCoords( (minx + x) >> 4, (minz + z) >> 4 ), (minx + x) & 0xF, (minz + z) & 0xF, minCY, cy_size );
|
||||
}
|
||||
|
||||
IMovableRegistry mr = AEApi.instance().registries().moveable();
|
||||
IMovableRegistry mr = AEApi.instance().registries().movable();
|
||||
|
||||
for (int cx = 0; cx < cx_size; cx++)
|
||||
for (int cz = 0; cz < cz_size; cz++)
|
||||
|
@ -234,13 +234,13 @@ public class CachedPlane
|
|||
|
||||
private IMovableHandler getHandler(TileEntity te)
|
||||
{
|
||||
IMovableRegistry mr = AEApi.instance().registries().moveable();
|
||||
IMovableRegistry mr = AEApi.instance().registries().movable();
|
||||
return mr.getHandler( te );
|
||||
}
|
||||
|
||||
void Swap(CachedPlane dst)
|
||||
{
|
||||
IMovableRegistry mr = AEApi.instance().registries().moveable();
|
||||
IMovableRegistry mr = AEApi.instance().registries().movable();
|
||||
|
||||
if ( dst.x_size == x_size && dst.y_size == y_size && dst.z_size == z_size )
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue