From f98793e788a31d90208a40be579895cb3b47b09b Mon Sep 17 00:00:00 2001 From: Nick Rimmer Date: Sat, 25 Jan 2020 18:51:21 +0200 Subject: [PATCH] quick fix Discord API --- TeamsLogger.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TeamsLogger.cs b/TeamsLogger.cs index 4180b8d..cc7487d 100644 --- a/TeamsLogger.cs +++ b/TeamsLogger.cs @@ -14,7 +14,7 @@ namespace Oxide.Plugins { - [Info("Teams Logger", "NickRimmer", "1.2")] + [Info("Teams Logger", "NickRimmer", "1.2.1")] [Description("Simple plugin to log team events")] public class TeamsLogger : RustPlugin { @@ -145,7 +145,7 @@ void Discord_GuildCreate(Guild guild) UpdateDiscordChannel(); } - void Discord_ChannelCreated(Channel channel) => UpdateDiscordChannel(); + void Discord_ChannelCreate(Channel channel) => UpdateDiscordChannel(); void Discord_ChannelUpdate(Channel updatedChannel, Channel oldChannel) => UpdateDiscordChannel(); void Discord_ChannelDelete(Channel channel) => UpdateDiscordChannel(); //void Discord_GuildUpdate(Guild guild) => UpdateDiscordChannel();