diff --git a/src/User.ts b/src/User.ts index 0341e40..c100fda 100644 --- a/src/User.ts +++ b/src/User.ts @@ -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(); } @@ -114,4 +114,4 @@ export enum Rank { Unregistered = 0, Admin = 2, Moderator = 3, -} \ No newline at end of file +}