Binato/server/Packets/ChannelPart.js

5 lines
190 B
JavaScript
Raw Normal View History

2020-08-27 13:09:35 +01:00
module.exports = function(userClass, data) {
2020-09-02 10:15:41 +01:00
if (data == "#multiplayer") return; // Ignore requests for multiplayer
2020-08-27 13:09:35 +01:00
global.StreamsHandler.removeUserFromStream(data, userClass.id);
}