aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/crossmod/holoinventory
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/gregtech/crossmod/holoinventory')
-rw-r--r--src/main/java/gregtech/crossmod/holoinventory/GTInventoryDecoder.java (renamed from src/main/java/gregtech/crossmod/holoinventory/GT_InventoryDecoder.java)4
-rw-r--r--src/main/java/gregtech/crossmod/holoinventory/HoloInventory.java2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/gregtech/crossmod/holoinventory/GT_InventoryDecoder.java b/src/main/java/gregtech/crossmod/holoinventory/GTInventoryDecoder.java
index 7f3651990d..6774a32c6d 100644
--- a/src/main/java/gregtech/crossmod/holoinventory/GT_InventoryDecoder.java
+++ b/src/main/java/gregtech/crossmod/holoinventory/GTInventoryDecoder.java
@@ -13,9 +13,9 @@ import net.minecraft.nbt.NBTTagList;
import gregtech.api.metatileentity.BaseTileEntity;
-public class GT_InventoryDecoder extends InventoryDecoder {
+public class GTInventoryDecoder extends InventoryDecoder {
- public GT_InventoryDecoder() {
+ public GTInventoryDecoder() {
super(BaseTileEntity.class);
}
diff --git a/src/main/java/gregtech/crossmod/holoinventory/HoloInventory.java b/src/main/java/gregtech/crossmod/holoinventory/HoloInventory.java
index d7dcdcf4b5..ce3c1f74eb 100644
--- a/src/main/java/gregtech/crossmod/holoinventory/HoloInventory.java
+++ b/src/main/java/gregtech/crossmod/holoinventory/HoloInventory.java
@@ -5,6 +5,6 @@ import net.dries007.holoInventory.compat.InventoryDecoderRegistry;
public class HoloInventory {
public static void init() {
- InventoryDecoderRegistry.register(new GT_InventoryDecoder());
+ InventoryDecoderRegistry.register(new GTInventoryDecoder());
}
}