aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com>2023-01-08 03:13:31 +0000
committerGTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com>2023-01-08 03:13:31 +0000
commit7aa8bb68e24e28c5b34af949b24b88be28e1d764 (patch)
tree5aeb2109f08aad82afe4a18465fe5961416e6c46 /src
parentc645007ca6cf4f513ed4f968c7a53f5c40933631 (diff)
downloadGT5-Unofficial-7aa8bb68e24e28c5b34af949b24b88be28e1d764.tar.gz
GT5-Unofficial-7aa8bb68e24e28c5b34af949b24b88be28e1d764.tar.bz2
GT5-Unofficial-7aa8bb68e24e28c5b34af949b24b88be28e1d764.zip
Small fixes
Diffstat (limited to 'src')
-rw-r--r--src/main/java/com/github/technus/tectech/recipe/EyeOfHarmonyRecipe.java1
-rw-r--r--src/main/java/com/github/technus/tectech/thing/block/RenderEyeOfHarmony.java2
2 files changed, 1 insertions, 2 deletions
diff --git a/src/main/java/com/github/technus/tectech/recipe/EyeOfHarmonyRecipe.java b/src/main/java/com/github/technus/tectech/recipe/EyeOfHarmonyRecipe.java
index 8c4324d70d..355f082a02 100644
--- a/src/main/java/com/github/technus/tectech/recipe/EyeOfHarmonyRecipe.java
+++ b/src/main/java/com/github/technus/tectech/recipe/EyeOfHarmonyRecipe.java
@@ -35,7 +35,6 @@ public class EyeOfHarmonyRecipe {
@Override
public boolean equals(ItemStack item1, ItemStack item2) {
- // todo investigate isItemEqual instead.
return item1.getUnlocalizedName().equals(item2.getUnlocalizedName());
}
};
diff --git a/src/main/java/com/github/technus/tectech/thing/block/RenderEyeOfHarmony.java b/src/main/java/com/github/technus/tectech/thing/block/RenderEyeOfHarmony.java
index 1e7f9f363c..9953f7de79 100644
--- a/src/main/java/com/github/technus/tectech/thing/block/RenderEyeOfHarmony.java
+++ b/src/main/java/com/github/technus/tectech/thing/block/RenderEyeOfHarmony.java
@@ -54,7 +54,7 @@ public class RenderEyeOfHarmony extends TileEntitySpecialRenderer {
private void renderOrbitObjects(final TileEyeOfHarmony EOHRenderTile) {
- if (EOHRenderTile.getOrbitingObjects() != null) { // Bad stuff!
+ if (EOHRenderTile.getOrbitingObjects() != null) {
if (EOHRenderTile.getOrbitingObjects().size() == 0) {
EOHRenderTile.generateImportantInfo();