From bdcbd1590b9efc45ac6102d424a693246b1b8af9 Mon Sep 17 00:00:00 2001 From: q13x <84165981+WorldEditAxe@users.noreply.github.com> Date: Wed, 5 Jul 2023 10:24:10 -0700 Subject: [PATCH] oops --- example_plugins/AutokickPlugin/index.ts | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/example_plugins/AutokickPlugin/index.ts b/example_plugins/AutokickPlugin/index.ts index e6cca7a..a45c9d9 100644 --- a/example_plugins/AutokickPlugin/index.ts +++ b/example_plugins/AutokickPlugin/index.ts @@ -39,16 +39,7 @@ server.on("login", (client) => { ); }); client.write("kick_disconnect", { - reason: - Enums.ChatColor.GREEN + - "Hi there!\n" + - Enums.ChatColor.GOLD + - "This server will be down for a while as I migrate the server from existing hardware to new, faster hardware.\nThis process will take approximately " + - Enums.ChatColor.RED + - "3-5 days" + - Enums.ChatColor.GOLD + - " to complete. Until then, you will be unable to connect or access the server.\n" + - "Thank you for your understanding! :)", + reason: "NO", }); });