mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-15 02:53:31 +01:00
feat: stage instances (#5749)
Co-authored-by: Vlad Frangu <kingdgrizzle@gmail.com> Co-authored-by: SpaceEEC <spaceeec@yahoo.com> Co-authored-by: Antonio Román <kyradiscord@gmail.com>
This commit is contained in:
5
src/client/websocket/handlers/STAGE_INSTANCE_CREATE.js
Normal file
5
src/client/websocket/handlers/STAGE_INSTANCE_CREATE.js
Normal file
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = (client, packet) => {
|
||||
client.actions.StageInstanceCreate.handle(packet.d);
|
||||
};
|
||||
5
src/client/websocket/handlers/STAGE_INSTANCE_DELETE.js
Normal file
5
src/client/websocket/handlers/STAGE_INSTANCE_DELETE.js
Normal file
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = (client, packet) => {
|
||||
client.actions.StageInstanceDelete.handle(packet.d);
|
||||
};
|
||||
5
src/client/websocket/handlers/STAGE_INSTANCE_UPDATE.js
Normal file
5
src/client/websocket/handlers/STAGE_INSTANCE_UPDATE.js
Normal file
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = (client, packet) => {
|
||||
client.actions.StageInstanceUpdate.handle(packet.d);
|
||||
};
|
||||
Reference in New Issue
Block a user