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++)
|
for (dx = 0; dx < width; dx++)
|
||||||
{
|
{
|
||||||
|
|
||||||
setBlockDirectly(world, x + dx, y + dy, z + dz, blocks[index], metadata[index]);
|
setBlockDirectly(world, x + dx, y + dy, z + dz, blocks[index], metadata[index]);
|
||||||
index++;
|
index++;
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,14 +15,14 @@ public class GatewayBlockFilter extends SchematicFilter {
|
||||||
private int transientDoorID;
|
private int transientDoorID;
|
||||||
|
|
||||||
|
|
||||||
public GatewayBlockFilter(short dimensionalDoorID,short transientDoorID)
|
public GatewayBlockFilter(short dimensionalDoorID, short transientDoorID)
|
||||||
{
|
{
|
||||||
super("GatewayEnteranceFinder");
|
super("GatewayEntranceFinder");
|
||||||
this.dimensionalDoorID = dimensionalDoorID;
|
this.dimensionalDoorID = dimensionalDoorID;
|
||||||
this.entranceDoorLocation = null;
|
this.entranceDoorLocation = null;
|
||||||
this.entranceOrientation = 0;
|
this.entranceOrientation = 0;
|
||||||
this.schematic = null;
|
this.schematic = null;
|
||||||
this.transientDoorID=transientDoorID;
|
this.transientDoorID = transientDoorID;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getEntranceOrientation() {
|
public int getEntranceOrientation() {
|
||||||
|
@ -45,7 +45,6 @@ public class GatewayBlockFilter extends SchematicFilter {
|
||||||
{
|
{
|
||||||
int indexBelow;
|
int indexBelow;
|
||||||
int indexDoubleBelow;
|
int indexDoubleBelow;
|
||||||
System.out.println(blocks[index]);
|
|
||||||
if (blocks[index] == dimensionalDoorID)
|
if (blocks[index] == dimensionalDoorID)
|
||||||
{
|
{
|
||||||
indexBelow = schematic.calculateIndexBelow(index);
|
indexBelow = schematic.calculateIndexBelow(index);
|
||||||
|
@ -67,7 +66,6 @@ public class GatewayBlockFilter extends SchematicFilter {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Add table
Reference in a new issue