implement rest of the fun commands

This commit is contained in:
dusk 2025-10-01 13:54:37 +00:00
parent 1556b119f3
commit d2807f402d
No known key found for this signature in database
2 changed files with 16 additions and 9 deletions

View file

@ -4,6 +4,14 @@ pub fn cmds() -> impl Iterator<Item = Command> {
[
command!("thunder" => "fun_thunder"),
command!("meow" => "fun_meow"),
command!("mn" => "fun_pokemon"),
command!("fire" => "fun_fire"),
command!("freeze" => "fun_freeze"),
command!("starstorm" => "fun_starstorm"),
command!("flash" => "fun_flash"),
command!("rool" => "fun_rool"),
command!("sus" => "amogus"),
command!("error" => "fun_error"),
]
.into_iter()
}