diff options
author | miozune <miozune@gmail.com> | 2023-10-13 17:59:39 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-13 10:59:39 +0200 |
commit | 4c8b94dd91fa5e16534d48415d5a4f75ea0bbb6f (patch) | |
tree | b9222d444b42514e265640aab7c3488816ddccd8 /src/main/java/gregtech/api/gui | |
parent | b43e65f3784a7978656a4e2a72a2734b37d7b735 (diff) | |
download | GT5-Unofficial-4c8b94dd91fa5e16534d48415d5a4f75ea0bbb6f.tar.gz GT5-Unofficial-4c8b94dd91fa5e16534d48415d5a4f75ea0bbb6f.tar.bz2 GT5-Unofficial-4c8b94dd91fa5e16534d48415d5a4f75ea0bbb6f.zip |
Fix Stocking Bus bug (#2326)
* Shut down machine with message if stocking bus fail to extract items
* Better way to handle message persistent on shutdown
* Minor cleanup
* Allow more localizations
* Add network status display
* Fix auto-pull mode accepting shift insert
* Remove workaround for issue with multiple ME buses in a multiblock
* Some tweak for appearance
* Correct inconsistent variable naming in GT_UITextures
* Update .gitignore
* Fix typo
* Remove isScheduledForResetCheckRecipeResult by using persistsOnShutdown
* Apply "cannot set slot" tooltip for empty slots too
Diffstat (limited to 'src/main/java/gregtech/api/gui')
-rw-r--r-- | src/main/java/gregtech/api/gui/modularui/GT_UITextures.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/main/java/gregtech/api/gui/modularui/GT_UITextures.java b/src/main/java/gregtech/api/gui/modularui/GT_UITextures.java index ffeec40561..1a47e41e8c 100644 --- a/src/main/java/gregtech/api/gui/modularui/GT_UITextures.java +++ b/src/main/java/gregtech/api/gui/modularui/GT_UITextures.java @@ -368,18 +368,18 @@ public class GT_UITextures { .fullImage(GregTech.ID, "gui/overlay_button/use_processing_state.png"); public static final UITexture OVERLAY_BUTTON_USE_INVERTED_PROCESSING_STATE = UITexture .fullImage(GregTech.ID, "gui/overlay_button/use_inverted_processing_state.png"); - public static final UITexture OVERLAY_CHUNK_LOADING = UITexture + public static final UITexture OVERLAY_BUTTON_CHUNK_LOADING = UITexture .fullImage(GregTech.ID, "gui/overlay_button/chunkloading"); - public static final UITexture OVERLAY_CHUNK_LOADING_OFF = UITexture + public static final UITexture OVERLAY_BUTTON_CHUNK_LOADING_OFF = UITexture .fullImage(GregTech.ID, "gui/overlay_button/chunkloading_off"); - public static final UITexture OVERLAY_WORK_AREA = UITexture.fullImage(GregTech.ID, "gui/overlay_button/work_area"); - public static final UITexture OVERLAY_REPLACE_COBBLE_ON = UITexture + public static final UITexture OVERLAY_BUTTON_WORK_AREA = UITexture + .fullImage(GregTech.ID, "gui/overlay_button/work_area"); + public static final UITexture OVERLAY_BUTTON_REPLACE_COBBLE_ON = UITexture .fullImage(GregTech.ID, "gui/overlay_button/replace_cobble_on"); - public static final UITexture OVERLAY_REPLACE_COBBLE_OFF = UITexture + public static final UITexture OVERLAY_BUTTON_REPLACE_COBBLE_OFF = UITexture .fullImage(GregTech.ID, "gui/overlay_button/replace_cobble_off"); - public static final UITexture OVERLAY_RETRACT_PIPE = UITexture + public static final UITexture OVERLAY_BUTTON_RETRACT_PIPE = UITexture .fullImage(GregTech.ID, "gui/overlay_button/retract_pipes"); - public static final UITexture OVERLAY_BUTTON_HOURGLASS = UITexture .fullImage(GregTech.ID, "gui/overlay_button/hourglass"); |