From a5e7ff771d657258cedcc7a8b3ce265c655f0860 Mon Sep 17 00:00:00 2001 From: mat Date: Fri, 30 May 2025 20:07:28 -0330 Subject: implement missing brigadier features and cleanup some more --- azalea-brigadier/src/modifier.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'azalea-brigadier/src/modifier.rs') diff --git a/azalea-brigadier/src/modifier.rs b/azalea-brigadier/src/modifier.rs index bebdd0cb..aba5e95f 100644 --- a/azalea-brigadier/src/modifier.rs +++ b/azalea-brigadier/src/modifier.rs @@ -1,6 +1,6 @@ use std::sync::Arc; -use crate::{context::CommandContext, exceptions::CommandSyntaxException}; +use crate::{context::CommandContext, errors::CommandSyntaxError}; pub type RedirectModifier = - dyn Fn(&CommandContext) -> Result>, CommandSyntaxException> + Send + Sync; + dyn Fn(&CommandContext) -> Result>, CommandSyntaxError> + Send + Sync; -- cgit v1.2.3