This commit is contained in:
1e99 2025-07-21 20:21:28 +02:00
parent 7c739740c9
commit 440acad589

View file

@ -2,7 +2,6 @@ import mcProtocol from "minecraft-protocol"
import sqlite from "node:sqlite"
import migrateDB from "./migrations.js"
// Modules
import Chat from "./modules/chat.js"
import Death from "./modules/death.js"
import Players from "./modules/players.js"
@ -18,6 +17,7 @@ import SeenCommand from "./commands/seen.js"
import TPSCommand from "./commands/tps.js"
import WorstPingCommand from "./commands/worst-ping.js"
console.log(`____ _ ____ _ ____ _ `)
console.log(`|___ \\| | |___ \\| | | _ \\ | | `)
console.log(` __) | |__ __) | |_| |_) | ___ | |_ `)
@ -37,6 +37,8 @@ const dateFormat = new Intl.DateTimeFormat("en-US", {
timeZone: "UTC",
})
newClient()
function newClient() {
console.log("Client connecting")
@ -135,5 +137,3 @@ function newClient() {
commands.register(new TPSCommand(chat, tps))
commands.register(new WorstPingCommand(chat, players))
}
newClient()