New Event (userSettingsUpdate)

This commit is contained in:
March 7th
2022-04-29 12:12:50 +07:00
parent 9ee3f1e0c3
commit 80115acecd
2 changed files with 4 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
'use strict';
const { Events } = require('../../../util/Constants');
module.exports = (client, { d: data }) => {
client.setting._patch(data);
return client.emit(Events.USER_SETTINGS_UPDATE, data);
};