diff options
| author | GTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com> | 2023-02-18 15:46:12 +0000 |
|---|---|---|
| committer | GTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com> | 2023-02-18 15:46:12 +0000 |
| commit | fe8f295661e8cd5f51fa866cfcd5f78e577bf3f4 (patch) | |
| tree | 441ede8823edc9df77bca7053aaa4c6e8ecdbc63 | |
| parent | 60ef3f05cbf599e6e13c8dc155f1e26a0174b9a2 (diff) | |
| parent | e0b0c530e575ad476ce2255896d50804d56adffb (diff) | |
| download | GT5-Unofficial-fe8f295661e8cd5f51fa866cfcd5f78e577bf3f4.tar.gz GT5-Unofficial-fe8f295661e8cd5f51fa866cfcd5f78e577bf3f4.tar.bz2 GT5-Unofficial-fe8f295661e8cd5f51fa866cfcd5f78e577bf3f4.zip | |
Merge branch 'master' into ImproveRecipes
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | build.gradle | 4 | ||||
| -rw-r--r-- | src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/GT_MetaTileEntity_EM_EyeOfHarmony.java | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore index 40fb5e4a7d..4d6346bf9b 100644 --- a/.gitignore +++ b/.gitignore @@ -27,3 +27,4 @@ whitelist.json *.iws src/main/resources/mixins.*.json *.bat +.vscode/settings.json diff --git a/build.gradle b/build.gradle index b808930520..6997e9d25f 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,4 @@ -//version: 1676031737 +//version: 1676679815 /* DO NOT CHANGE THIS FILE! Also, you may replace this file at any time if there is an update available. @@ -677,7 +677,7 @@ dependencies { java17Dependencies("com.github.GTNewHorizons:lwjgl3ify:${lwjgl3ifyVersion}") } if (modId != 'hodgepodge') { - java17Dependencies('com.github.GTNewHorizons:Hodgepodge:2.0.31') + java17Dependencies('com.github.GTNewHorizons:Hodgepodge:2.0.35') } java17PatchDependencies('net.minecraft:launchwrapper:1.15') {transitive = false} diff --git a/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/GT_MetaTileEntity_EM_EyeOfHarmony.java b/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/GT_MetaTileEntity_EM_EyeOfHarmony.java index fc74091ea6..1656dbc42a 100644 --- a/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/GT_MetaTileEntity_EM_EyeOfHarmony.java +++ b/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/GT_MetaTileEntity_EM_EyeOfHarmony.java @@ -1177,7 +1177,7 @@ public class GT_MetaTileEntity_EM_EyeOfHarmony extends GT_MetaTileEntity_Multibl double xOffset = 16 * getExtendedFacing().getRelativeBackInWorld().offsetX; double zOffset = 16 * getExtendedFacing().getRelativeBackInWorld().offsetZ; - double yOffset = 16 * getExtendedFacing().getRelativeBackInWorld().offsetZ; + double yOffset = 16 * getExtendedFacing().getRelativeBackInWorld().offsetY; this.getBaseMetaTileEntity().getWorld() .setBlock((int) (x + xOffset), (int) (y + yOffset), (int) (z + zOffset), Blocks.air); |
