aboutsummaryrefslogtreecommitdiff
path: root/webAO/packets/handlers/handleBD.ts
diff options
context:
space:
mode:
Diffstat (limited to 'webAO/packets/handlers/handleBD.ts')
-rw-r--r--webAO/packets/handlers/handleBD.ts9
1 files changed, 4 insertions, 5 deletions
diff --git a/webAO/packets/handlers/handleBD.ts b/webAO/packets/handlers/handleBD.ts
index dbfb54b..befda6a 100644
--- a/webAO/packets/handlers/handleBD.ts
+++ b/webAO/packets/handlers/handleBD.ts
@@ -1,7 +1,6 @@
import { setBanned } from "../../client";
import { safeTags } from "../../encoding";
-import { handleBans } from '../../client/handleBans'
-
+import { handleBans } from "../../client/handleBans";
/**
* Handles the banned packet
@@ -9,6 +8,6 @@ import { handleBans } from '../../client/handleBans'
* @param {Array} args ban reason
*/
export const handleBD = (args: string[]) => {
- handleBans("Banned", safeTags(args[1]));
- setBanned(true);
-} \ No newline at end of file
+ handleBans("Banned", safeTags(args[1]));
+ setBanned(true);
+};