From 92459fb4deecbbc9fb2039093891a2cbd28afacc Mon Sep 17 00:00:00 2001 From: Geeves Date: Wed, 19 Jun 2019 17:36:03 +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 634153a..f73b2df 100644 --- a/EventBot/Modules/EventModule.cs +++ b/EventBot/Modules/EventModule.cs @@ -234,7 +234,7 @@ namespace EventBot.Modules [Summary("New description for the role.")][Remainder] string description) { if (eventRole == null) - throw new Exception("Please provide the correct role info, this one does not exist."); + throw new Exception("Please provide the correct role ID, this one does not exist."); if (!eventRole.Event.Active) throw new Exception("This event is finalized. Please make a new event."); eventRole.Description = description;