We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3562164 commit f6ec9d9Copy full SHA for f6ec9d9
CSLMusicMod/CSLMusicMod.cs
@@ -15,7 +15,7 @@ public class CSLMusicMod : IUserMod
15
{
16
public static System.Random RANDOM = new System.Random();
17
18
- public const String VersionName = "Rewrite 1.1.11.1";
+ public const String VersionName = "Rewrite 1.1.11.2";
19
20
private SettingsUI m_SettingsUI;
21
CSLMusicMod/Contexts/RadioContext.cs
@@ -37,6 +37,9 @@ public RadioContext()
37
/// <returns>true if one set of conditions apply</returns>
38
public bool Applies()
39
40
+ if (m_Conditions.Count == 0)
41
+ return true;
42
+
43
foreach(var conj in m_Conditions)
44
45
bool applies = true;
0 commit comments