Fix crash caused by new changes

This commit is contained in:
MDMCK10
2023-02-11 17:07:34 +01:00
committed by GitHub
parent cea28ebf8c
commit e7b56d18e6

View File

@@ -99,7 +99,7 @@ export class User {
// Prevent the user from taking turns or chatting, in case the ban command takes a while
this.IP.muted = true;
//@ts-ignore
var cmd = this.Config.collabvm.bancmd.replace(/\$IP/g, this.IP).replace(/\$NAME/g, this.username);
var cmd = this.Config.collabvm.bancmd.replace(/\$IP/g, this.IP.address).replace(/\$NAME/g, this.username);
await execaCommand(cmd);
this.kick();
}