add a few todos

This commit is contained in:
1e99 2025-07-21 20:14:07 +02:00
parent 57f91861d0
commit ce5d6451c2
3 changed files with 5 additions and 1 deletions

View file

@ -39,6 +39,8 @@ export default class Commands {
command.run(username, args)
return
}
this.#chat.chat(`Unknown command. Use help to get a list of all commands`)
}
get prefix() {

View file

@ -80,7 +80,7 @@ function newClient() {
death.respawn()
})
// TODO: Move this into another file?
// TODO: Move this into another file and organize it better?
players.addListener("player-add", player => {
console.log(`${player.username} (${player.uuid}) joined the game`)

View file

@ -1,6 +1,8 @@
import EventEmitter from "node:events"
import prismarineChat, { processNbtMessage } from "prismarine-chat"
// TODO: Chat queue
export default class Chat extends EventEmitter {
#client