Binato/server/Packets/ChannelPart.js

5 lines
194 B
JavaScript
Raw Normal View History

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