add a few todos
This commit is contained in:
parent
57f91861d0
commit
ce5d6451c2
3 changed files with 5 additions and 1 deletions
|
@ -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() {
|
||||
|
|
|
@ -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`)
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue