From c28ffe2ade808c01b4841656394f774316372739 Mon Sep 17 00:00:00 2001 From: Geeves Date: Wed, 19 Jun 2019 17:36:21 +0200 Subject: [PATCH] Update EventBot/Modules/EventModule.cs --- EventBot/Modules/EventModule.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EventBot/Modules/EventModule.cs b/EventBot/Modules/EventModule.cs index f73b2df..0a10da9 100644 --- a/EventBot/Modules/EventModule.cs +++ b/EventBot/Modules/EventModule.cs @@ -421,7 +421,7 @@ namespace EventBot.Modules { var guildEvents = _database.Events.Where(e => e.GuildId == Context.Guild.Id).OrderBy(e => e.Opened).ToList(); if (guildEvents.Count() == 0) - throw new Exception("No events have been run on this server."); + throw new Exception("There are no events that have been run on this server."); var pagedEvents = guildEvents .Select((e, i) => new { Event = e, Index = i })