From fc77530140a14638d1440db68e7e68a2056713a9 Mon Sep 17 00:00:00 2001 From: Glease <4586901+Glease@users.noreply.github.com> Date: Sun, 18 Aug 2024 02:43:07 +0800 Subject: add covers that can hold some items (#2593) * add chest cover * Spotless apply for branch feature/chestcover for #2593 (#2594) * create window on the left * sa * add slot migration * add texture and T2&3 * add texture and T2&3 * spotless * fix bugs * add chest cover * small fix and spotless Co-Authored-By: GitHub GTNH Actions <> --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Martin Robertz Co-authored-by: Nxer <43300390+Nxer@users.noreply.github.com> Co-authored-by: Nxer <306803661@qq.com> --- src/main/java/gregtech/api/enums/ItemList.java | 3 +++ src/main/java/gregtech/api/enums/Textures.java | 7 +++++++ 2 files changed, 10 insertions(+) (limited to 'src/main/java/gregtech/api/enums') diff --git a/src/main/java/gregtech/api/enums/ItemList.java b/src/main/java/gregtech/api/enums/ItemList.java index 6533aca304..d26f4bef15 100644 --- a/src/main/java/gregtech/api/enums/ItemList.java +++ b/src/main/java/gregtech/api/enums/ItemList.java @@ -592,6 +592,9 @@ public enum ItemList implements IItemContainer { Cover_SolarPanel_UHV, Cover_SolarPanel_UEV, Cover_SolarPanel_UIV, + Cover_Chest_Basic, + Cover_Chest_Good, + Cover_Chest_Advanced, Ingot_IridiumAlloy, Plank_Oak, Plank_Spruce, diff --git a/src/main/java/gregtech/api/enums/Textures.java b/src/main/java/gregtech/api/enums/Textures.java index 53125ec454..618fc83c55 100644 --- a/src/main/java/gregtech/api/enums/Textures.java +++ b/src/main/java/gregtech/api/enums/Textures.java @@ -538,6 +538,13 @@ public class Textures { OVERLAY_FLUIDDETECTOR, OVERLAY_ITEMDETECTOR, + OVERLAY_COVER_CHEST_1, + OVERLAY_COVER_CHEST_1_OPENED, + OVERLAY_COVER_CHEST_2, + OVERLAY_COVER_CHEST_2_OPENED, + OVERLAY_COVER_CHEST_3, + OVERLAY_COVER_CHEST_3_OPENED, + OVERLAY_REDSTONE_TRANSMITTER, OVERLAY_REDSTONE_RECEIVER, OVERLAY_MAINTENANCE_DETECTOR, -- cgit