adds the /kill command

This commit is contained in:
Alerty2
2024-09-29 17:15:10 +02:00
parent 0590a4f87d
commit 100f313c49

View File

@@ -13,6 +13,7 @@ mod cmd_gamemode;
mod cmd_help;
mod cmd_pumpkin;
mod cmd_stop;
mod cmd_kill;
pub mod dispatcher;
mod tree;
mod tree_builder;
@@ -75,6 +76,7 @@ pub fn default_dispatcher<'a>() -> CommandDispatcher<'a> {
dispatcher.register(cmd_stop::init_command_tree());
dispatcher.register(cmd_help::init_command_tree());
dispatcher.register(cmd_echest::init_command_tree());
dispatcher.register(cmd_kill::init_command_tree());
dispatcher
}