summaryrefslogtreecommitdiff
path: root/DiscoBot/Program.cs
diff options
context:
space:
mode:
authorDennis Kobert <d-kobert@web.de>2019-05-05 21:45:13 +0200
committerDennis Kobert <d-kobert@web.de>2019-05-05 21:45:13 +0200
commit6543b93a67a14ffa6f184e28b67912df7e314315 (patch)
tree3f8bfc3bd0e2c73fa6f6e2fab83fbde645f7cdcf /DiscoBot/Program.cs
parent35427f903dc20ddcd8cf302c1e78f6bfd8ca735c (diff)
fixed Properties load path
Diffstat (limited to 'DiscoBot/Program.cs')
-rw-r--r--DiscoBot/Program.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/DiscoBot/Program.cs b/DiscoBot/Program.cs
index 5dc69c1..9675b48 100644
--- a/DiscoBot/Program.cs
+++ b/DiscoBot/Program.cs
@@ -53,7 +53,7 @@ namespace DiscoBot
this.client.MessageReceived += this.HandleCommandAsync;
// Discover all of the commands in this assembly and load them.
- return this.commands.AddModulesAsync(Assembly.GetEntryAssembly());
+ return this.commands.AddModulesAsync(Assembly.GetEntryAssembly(), services);
}
public async Task HandleCommandAsync(SocketMessage messageParam)