diff options
Diffstat (limited to 'webAO/packets/handlers/handleKB.ts')
| -rw-r--r-- | webAO/packets/handlers/handleKB.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/webAO/packets/handlers/handleKB.ts b/webAO/packets/handlers/handleKB.ts index b0aa2b2..3192cb1 100644 --- a/webAO/packets/handlers/handleKB.ts +++ b/webAO/packets/handlers/handleKB.ts @@ -1,6 +1,6 @@ import { setBanned } from "../../client"; import { safeTags } from "../../encoding"; -import { handleBans } from '../../client/handleBans' +import { handleBans } from "../../client/handleBans"; /** * Handles the banned packet @@ -8,6 +8,6 @@ import { handleBans } from '../../client/handleBans' * @param {Array} args ban reason */ export const handleKB = (args: string[]) => { - handleBans("Banned", safeTags(args[1])); - setBanned(true); -} + handleBans("Banned", safeTags(args[1])); + setBanned(true); +}; |
