Merge pull request #20 from jadis0x/patch-12

Update Misc.cs
This commit was merged in pull request #20.
This commit is contained in:
ALittlePatate
2022-09-08 14:26:39 +02:00
committed by GitHub

View File

@@ -186,7 +186,7 @@ namespace DevourClient.Hacks
NolanVoiceOvers nolanVoiceOvers = UnityEngine.Object.FindObjectOfType<NolanVoiceOvers>(); NolanVoiceOvers nolanVoiceOvers = UnityEngine.Object.FindObjectOfType<NolanVoiceOvers>();
playRandomAudioClip.delay = 0f; playRandomAudioClip.delay = 0f;
int num = Random.RandomRangeInt(0, 8); int num = Random.RandomRangeInt(0, 10);
switch (num) switch (num)
{ {
case 0: case 0:
@@ -213,6 +213,12 @@ namespace DevourClient.Hacks
case 7: case 7:
nolanVoiceOvers.laughClips.Play(); nolanVoiceOvers.laughClips.Play();
return; return;
case 8:
nolanVoiceOvers.PlayMoan();
return;
case 9:
nolanVoiceOvers.Scream();
return;
default: default:
return; return;
} }