mirror of
https://github.com/nx-bat/pet-the-pond.git
synced 2026-09-22 10:29:11 -04:00
(init): Initial files. Features not implemented.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import { CommandClient, Event } from "athena-prime";
|
||||
|
||||
// ----------
|
||||
|
||||
class ReadyEvent extends Event<CommandClient> {
|
||||
event: string = 'ready' as const;
|
||||
|
||||
async handle(context: CommandClient<any, any>) {
|
||||
await context.deployCommands();
|
||||
context.setCustomActivity("Petting the Pond!");
|
||||
}
|
||||
}
|
||||
|
||||
export default new ReadyEvent('ready');
|
||||
Reference in New Issue
Block a user