We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01787a7 commit b1cb628Copy full SHA for b1cb628
2 files changed
src/CWX-MegaMod/AlarmChanger/AlarmChanger.cs
@@ -50,9 +50,11 @@ private async Task SetSounds()
50
return;
51
}
52
53
+ var clip = _clips[UnityEngine.Random.Range(0, _clips.Count)];
54
+
55
foreach (var sub in subs)
56
{
- sub.Sounds.FirstOrDefault().Clip = _clips[UnityEngine.Random.Range(0, _clips.Count)];
57
+ sub.Sounds.FirstOrDefault().Clip = clip;
58
59
60
src/CWX-MegaMod/MegaMod.cs
@@ -10,7 +10,7 @@
10
11
namespace CWX_MegaMod
12
13
- [BepInPlugin("CWX.MegaMod", "CWX-MegaMod", "1.2.1")]
+ [BepInPlugin("CWX.MegaMod", "CWX-MegaMod", "1.2.3")]
14
public class MegaMod : BaseUnityPlugin
15
16
internal new static ManualLogSource Logger { get; private set; }
0 commit comments