mirror of
https://github.com/Pumpkin-MC/Pumpkin.git
synced 2026-08-30 20:14:23 +00:00
remove debug thing
This commit is contained in:
@@ -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(())
|
||||
})
|
||||
}
|
||||
@@ -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 }
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user