Binato/server/Packets/AddFriend.js
2022-09-30 11:34:13 +01:00

3 lines
No EOL
174 B
JavaScript
Executable file

module.exports = function(CurrentUser, FriendToAdd) {
global.DatabaseHelper.query("INSERT INTO friends (user, friendsWith) VALUES (?, ?);", [CurrentUser.id, FriendToAdd]);
}