Skip to content

Commit 80cd99d

Browse files
authored
Merge pull request #4 from rust-plugins/develop
Quick fix Discord API
2 parents 269201f + f98793e commit 80cd99d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

TeamsLogger.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
namespace Oxide.Plugins
1616
{
17-
[Info("Teams Logger", "NickRimmer", "1.2")]
17+
[Info("Teams Logger", "NickRimmer", "1.2.1")]
1818
[Description("Simple plugin to log team events")]
1919
public class TeamsLogger : RustPlugin
2020
{
@@ -145,7 +145,7 @@ void Discord_GuildCreate(Guild guild)
145145
UpdateDiscordChannel();
146146
}
147147

148-
void Discord_ChannelCreated(Channel channel) => UpdateDiscordChannel();
148+
void Discord_ChannelCreate(Channel channel) => UpdateDiscordChannel();
149149
void Discord_ChannelUpdate(Channel updatedChannel, Channel oldChannel) => UpdateDiscordChannel();
150150
void Discord_ChannelDelete(Channel channel) => UpdateDiscordChannel();
151151
//void Discord_GuildUpdate(Guild guild) => UpdateDiscordChannel();

0 commit comments

Comments
 (0)