Skip to content

Commit

Permalink
correct units
Browse files Browse the repository at this point in the history
  • Loading branch information
stonedDiscord committed Aug 7, 2024
1 parent 73373ce commit dc85197
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webAO/dom/banPlayer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import { client } from '../client'
export function banPlayer(id: number) {
let reason;
let length;
reason = prompt("Please enter the ban reason", "");
length = Number(prompt("Please enter the ban length in hours", ""));
reason = prompt("Please enter the ban reason", "Being annoying");
length = Number(prompt("Please enter the ban length in minutes", "60"));

client.sender.sendMA(id, length, reason);
}
Expand Down

0 comments on commit dc85197

Please sign in to comment.