Skip to content

Commit 4b312d1

Browse files
authored
Allow anyone to access Registry.mods (#105)
closes #105
1 parent 9b03e46 commit 4b312d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Registry.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public static class Registry
2929
/// <summary>
3030
/// A dictionary of all loaded mods, keyed by their ID.
3131
/// </summary>
32-
internal static Dictionary<string, Mod> mods = new();
32+
public static Dictionary<string, Mod> mods = new();
3333

3434
/// <summary>
3535
/// A dictionary of tribe previews, keyed by tribe name.
@@ -122,4 +122,4 @@ public static class Registry
122122
if (audioSource == null) return null;
123123
return audioSource.clip;
124124
}
125-
}
125+
}

0 commit comments

Comments
 (0)