diff options
author | TrueDoctor <d-kobert@web.de> | 2018-06-15 09:58:24 +0200 |
---|---|---|
committer | TrueDoctor <d-kobert@web.de> | 2018-06-15 09:58:24 +0200 |
commit | 380d9ec6048663b0e497e2437222d783236b864f (patch) | |
tree | 635fd93e6902c696abe31526da1fc15db7f2d516 /DiscoBot/Auxiliary | |
parent | c00b3bbf39ae2756aecceaa54b3a87a0e3955a9e (diff) |
Added Properties Class
auto load last settings
removed sound enumerable
moved Sonds to properties
moved Commands to properties
Diffstat (limited to 'DiscoBot/Auxiliary')
-rw-r--r-- | DiscoBot/Auxiliary/TalentEnumerableExtension.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/DiscoBot/Auxiliary/TalentEnumerableExtension.cs b/DiscoBot/Auxiliary/TalentEnumerableExtension.cs index c366674..43c917e 100644 --- a/DiscoBot/Auxiliary/TalentEnumerableExtension.cs +++ b/DiscoBot/Auxiliary/TalentEnumerableExtension.cs @@ -23,7 +23,7 @@ namespace DiscoBot.Auxiliary { try { - SoundEffects.Play(Sound.Stupid); + SoundEffects.Play("Stupid"); } catch { } return $"{c.Name} kann nicht {talent}..."; @@ -90,7 +90,7 @@ namespace DiscoBot.Auxiliary { try { - SoundEffects.Play(Sound.Wrong); + SoundEffects.Play("Wrong"); } catch { } } |