This commit is contained in:
I-Have-An-Issue 2022-10-14 14:59:08 -04:00
parent 131a82bd7b
commit 2f519eff48
No known key found for this signature in database
GPG Key ID: E55435DEA0825091
1 changed files with 2 additions and 2 deletions

View File

@ -43,10 +43,10 @@ import signer from "./signer";
export default function (id, username, ip, port, membership) {
let joinscript = script;
script.UserId = id;
script.UserId = Number(id);
script.UserName = username;
script.MachineAddress = ip;
script.ServerPort = port;
script.ServerPort = Number(port);
script.MembershipType = membership;
let sig = signer(JSON.stringify(joinscript));