remove debug thing

This commit is contained in:
Edvin Bryntesson
2024-08-21 19:28:27 +02:00
parent 9003ee3dcc
commit 2e00110d5d
2 changed files with 0 additions and 16 deletions

View File

@@ -1,14 +0,0 @@
use pumpkin_inventory::WindowType;
use crate::commands::tree::CommandTree;
pub(crate) const NAME: &str = "chest";
const DESCRIPTION: &str = "Open a chest containing lots of diamond blocks";
pub(crate) fn init_command_tree<'a>() -> CommandTree<'a> {
CommandTree::new(DESCRIPTION).execute(&|sender, _| {
sender.as_mut_player().unwrap().open_container(WindowType::Generic3x3,"minecraft:generic_9x3",None);
Ok(())
})
}

View File

@@ -12,7 +12,6 @@ mod cmd_stop;
mod dispatcher;
mod tree;
mod tree_builder;
mod cmd_chest;
pub enum CommandSender<'a> {
Rcon(&'a mut Vec<String>),
@@ -78,7 +77,6 @@ fn dispatcher_init<'a>() -> CommandDispatcher<'a> {
map.insert(cmd_stop::NAME, cmd_stop::init_command_tree());
map.insert(cmd_help::NAME, cmd_help::init_command_tree());
map.insert(cmd_help::ALIAS, cmd_help::init_command_tree());
map.insert(cmd_chest::NAME,cmd_chest::init_command_tree());
CommandDispatcher { commands: map }
}