Skip to content

Commit

Permalink
various guildSync cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
bdistin committed May 20, 2018
1 parent ce71c91 commit a4b9d56
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 44 deletions.
1 change: 0 additions & 1 deletion src/client/actions/ActionsManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ class ActionsManager {
this.register(require('./GuildRoleDelete'));
this.register(require('./GuildRoleUpdate'));
this.register(require('./UserUpdate'));
this.register(require('./GuildSync'));
this.register(require('./GuildEmojiCreate'));
this.register(require('./GuildEmojiDelete'));
this.register(require('./GuildEmojiUpdate'));
Expand Down
29 changes: 0 additions & 29 deletions src/client/actions/GuildSync.js

This file was deleted.

1 change: 0 additions & 1 deletion src/client/websocket/packets/WebSocketPacketManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ class WebSocketPacketManager {
this.register(WSEvents.MESSAGE_UPDATE, require('./handlers/MessageUpdate'));
this.register(WSEvents.MESSAGE_DELETE_BULK, require('./handlers/MessageDeleteBulk'));
this.register(WSEvents.VOICE_SERVER_UPDATE, require('./handlers/VoiceServerUpdate'));
this.register(WSEvents.GUILD_SYNC, require('./handlers/GuildSync'));
this.register(WSEvents.MESSAGE_REACTION_ADD, require('./handlers/MessageReactionAdd'));
this.register(WSEvents.MESSAGE_REACTION_REMOVE, require('./handlers/MessageReactionRemove'));
this.register(WSEvents.MESSAGE_REACTION_REMOVE_ALL, require('./handlers/MessageReactionRemoveAll'));
Expand Down
11 changes: 0 additions & 11 deletions src/client/websocket/packets/handlers/GuildSync.js

This file was deleted.

2 changes: 0 additions & 2 deletions src/util/Constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,6 @@ exports.Events = {
* The type of a websocket message event, e.g. `MESSAGE_CREATE`. Here are the available events:
* * READY
* * RESUMED
* * GUILD_SYNC
* * GUILD_CREATE
* * GUILD_DELETE
* * GUILD_UPDATE
Expand Down Expand Up @@ -289,7 +288,6 @@ exports.Events = {
exports.WSEvents = keyMirror([
'READY',
'RESUMED',
'GUILD_SYNC',
'GUILD_CREATE',
'GUILD_DELETE',
'GUILD_UPDATE',
Expand Down

0 comments on commit a4b9d56

Please sign in to comment.