We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf8a569 commit a4c37cfCopy full SHA for a4c37cf
2 files changed
build.properties
@@ -2,4 +2,4 @@ mc_version=1.12.2
2
forge_version=14.23.0.2544
3
mcp_mappings=snapshot_20171120
4
5
-mod_version=1.5.6-pre.1
+mod_version=1.5.7-pre.1
src/main/java/alexiil/mc/mod/load/render/TextureLoader.java
@@ -150,6 +150,14 @@ public static InputStream openResourceStream(ResourceLocation location) throws I
150
}
151
152
Object value = map.get(location.getResourceDomain());
153
+
154
+ if (value == null) {
155
+ if (CustomLoadingScreen.debugResourceLoading) {
156
+ CLSLog.info("[debug] - Found no entry for the domain!");
157
+ }
158
+ return null;
159
160
161
if (CustomLoadingScreen.debugResourceLoading) {
162
CLSLog.info("[debug] - Looking at " + value);
163
0 commit comments