Update EventBot/Modules/EventModule.cs

Co-Authored-By: Karolis <Karolis2011@users.noreply.github.com>
This commit is contained in:
Geeves
2019-06-19 17:27:19 +02:00
committed by Karolis2011
parent 5d32d3b611
commit 021c497288

View File

@@ -239,7 +239,7 @@ namespace EventBot.Modules
throw new Exception("This event is finalized. Please make a new event.");
eventRole.Description = description;
var s = _database.SaveChangesAsync();
await ReplyAsync($"Updated event role `{eventRole.Id}`'s description to `{eventRole.Description}`");
await ReplyAsync($"Updated event role's `{eventRole.Id}` description to `{eventRole.Description}`");
await s;
await _events.UpdateEventMessage(eventRole.Event);
}