Minor Changes
Tweaked spacing in files.
This commit is contained in:
parent
e45f9c389f
commit
76f515e207
2 changed files with 3 additions and 6 deletions
|
@ -378,7 +378,6 @@ public class Schematic {
|
|||
{
|
||||
for (dx = 0; dx < width; dx++)
|
||||
{
|
||||
|
||||
setBlockDirectly(world, x + dx, y + dy, z + dz, blocks[index], metadata[index]);
|
||||
index++;
|
||||
}
|
||||
|
|
|
@ -15,14 +15,14 @@ public class GatewayBlockFilter extends SchematicFilter {
|
|||
private int transientDoorID;
|
||||
|
||||
|
||||
public GatewayBlockFilter(short dimensionalDoorID,short transientDoorID)
|
||||
public GatewayBlockFilter(short dimensionalDoorID, short transientDoorID)
|
||||
{
|
||||
super("GatewayEnteranceFinder");
|
||||
super("GatewayEntranceFinder");
|
||||
this.dimensionalDoorID = dimensionalDoorID;
|
||||
this.entranceDoorLocation = null;
|
||||
this.entranceOrientation = 0;
|
||||
this.schematic = null;
|
||||
this.transientDoorID=transientDoorID;
|
||||
this.transientDoorID = transientDoorID;
|
||||
}
|
||||
|
||||
public int getEntranceOrientation() {
|
||||
|
@ -45,7 +45,6 @@ public class GatewayBlockFilter extends SchematicFilter {
|
|||
{
|
||||
int indexBelow;
|
||||
int indexDoubleBelow;
|
||||
System.out.println(blocks[index]);
|
||||
if (blocks[index] == dimensionalDoorID)
|
||||
{
|
||||
indexBelow = schematic.calculateIndexBelow(index);
|
||||
|
@ -67,7 +66,6 @@ public class GatewayBlockFilter extends SchematicFilter {
|
|||
}
|
||||
}
|
||||
return false;
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue