diff options
author | Jordan Byrne <draknyte1@hotmail.com> | 2018-03-19 06:17:49 +1000 |
---|---|---|
committer | Jordan Byrne <draknyte1@hotmail.com> | 2018-03-19 06:17:49 +1000 |
commit | 2ce1cd6abb035eec76e7baf3cd5b3fea81fbd6a5 (patch) | |
tree | 10346abad31db1ac64c15a55fad57d1ea65bcf53 /src/Java/gtPlusPlus/api | |
parent | 508afb4048251cea48294c4f6a81ab2b764c7a4a (diff) | |
download | GT5-Unofficial-2ce1cd6abb035eec76e7baf3cd5b3fea81fbd6a5.tar.gz GT5-Unofficial-2ce1cd6abb035eec76e7baf3cd5b3fea81fbd6a5.tar.bz2 GT5-Unofficial-2ce1cd6abb035eec76e7baf3cd5b3fea81fbd6a5.zip |
+ Added Custom mining pipe & head blocks for the Bedrock Mining Platform.
+ Added Cryotheum and Pyrotheum requirements to the BRMP.
$ More Fixes to Pipe handling within the BRMP.
Diffstat (limited to 'src/Java/gtPlusPlus/api')
-rw-r--r-- | src/Java/gtPlusPlus/api/objects/minecraft/BlockPos.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/api/objects/minecraft/BlockPos.java b/src/Java/gtPlusPlus/api/objects/minecraft/BlockPos.java index 7ee71e7c9f..5f0d3a2117 100644 --- a/src/Java/gtPlusPlus/api/objects/minecraft/BlockPos.java +++ b/src/Java/gtPlusPlus/api/objects/minecraft/BlockPos.java @@ -31,6 +31,14 @@ public class BlockPos implements Serializable{ this.world = DimensionManager.getWorld(dim); } + public BlockPos(int x, int y, int z, World dim){ + this.xPos = x; + this.yPos = y; + this.zPos = z; + this.dim = dim.provider.dimensionId; + this.world = dim; + } + public String getLocationString() { return "[X: "+this.xPos+"][Y: "+this.yPos+"][Z: "+this.zPos+"][Dim: "+this.dim+"]"; } |