diff options
Diffstat (limited to 'DiscoBot/Auxiliary/TalentEnumerableExtension.cs')
-rw-r--r-- | DiscoBot/Auxiliary/TalentEnumerableExtension.cs | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/DiscoBot/Auxiliary/TalentEnumerableExtension.cs b/DiscoBot/Auxiliary/TalentEnumerableExtension.cs index 83975e7..c366674 100644 --- a/DiscoBot/Auxiliary/TalentEnumerableExtension.cs +++ b/DiscoBot/Auxiliary/TalentEnumerableExtension.cs @@ -21,7 +21,11 @@ namespace DiscoBot.Auxiliary if (sc.Compare(talent, tTalent.Name) > SpellCorrect.ErrorThreshold) { - SoundEffects.Play(Sound.Wrong); + try + { + SoundEffects.Play(Sound.Stupid); + } + catch { } return $"{c.Name} kann nicht {talent}..."; } @@ -84,7 +88,11 @@ namespace DiscoBot.Auxiliary if (tap < 0) { - //SoundEffects.Play(Sound.Wrong).Wait(); + try + { + SoundEffects.Play(Sound.Wrong); + } + catch { } } output.AppendFormat(" tap: {0,2}", tap); |