diff options
author | marzavec <admin@marzavec.com> | 2020-03-12 16:58:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-12 16:58:28 +0100 |
commit | 9284f27a19638386e0013eb8815ef2c1d16f225e (patch) | |
tree | 32645441ec6bf416baadbd8af3bdd4cafbd8f90c | |
parent | Merge pull request #94 from MinusGix/joinPassword (diff) | |
parent | Make hash take the correct property (diff) | |
download | hackchat-9284f27a19638386e0013eb8815ef2c1d16f225e.tar.gz hackchat-9284f27a19638386e0013eb8815ef2c1d16f225e.zip |
Merge pull request #96 from MinusGix/fixKickHash
Make hash take the correct property
-rw-r--r-- | server/src/commands/mod/kick.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/commands/mod/kick.js b/server/src/commands/mod/kick.js index 35fd2df..cf1ff75 100644 --- a/server/src/commands/mod/kick.js +++ b/server/src/commands/mod/kick.js @@ -59,7 +59,7 @@ export async function run(core, server, socket, data) { cmd: 'onlineAdd', nick: kicked[i].nick, trip: kicked[i].trip || 'null', - hash: kicked[i].userHash, + hash: kicked[i].hash, }, { channel: destChannel }); } |