Skip to content

Commit

Permalink
Fixed mod loading
Browse files Browse the repository at this point in the history
  • Loading branch information
buj committed Sep 7, 2024
1 parent 5e99bfb commit 26e203b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/mindustry/mod/Mods.java
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ public void load(){

if(meta == null || meta.name == null) continue;
metas.add(meta);
mapping.put(meta.name, file);
mapping.put(meta.internalName, file);
}

var resolved = resolveDependencies(metas);
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ org.gradle.caching=true
#used for slow jitpack builds; TODO see if this actually works
org.gradle.internal.http.socketTimeout=100000
org.gradle.internal.http.connectionTimeout=100000
archash=29c4199b83
archash=31a570ab27

0 comments on commit 26e203b

Please sign in to comment.