Added 4 View Cell Slots.

Multiple View Cells now sum together to allow more customization.
View Cells are now protected by Build Security.
Meteorite Compass now renders correctly in other peoples hands.
This commit is contained in:
AlgorithmX2
2014-03-04 21:12:23 -06:00
parent 4536189042
commit 929efa5597
30 changed files with 228 additions and 102 deletions
+2 -2
View File
@@ -57,8 +57,8 @@ public class CompassService implements Runnable
private class CMDirectionRequest extends CompassMessage
{
public final DimensionalCoord coord;
public final int maxRange;
public final DimensionalCoord coord;
public final ICompassCallback callback;
@Override
@@ -190,7 +190,7 @@ public class CompassService implements Runnable
}
// spiral outward...
for (int offset = 1; offset < 174; offset++)
for (int offset = 1; offset < req.maxRange; offset++)
{
int minx = cx - offset;
int minz = cz - offset;