aboutsummaryrefslogtreecommitdiff
path: root/azalea-brigadier/src/parse_results.rs
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-05-30 20:07:28 -0330
committermat <git@matdoes.dev>2025-05-30 16:37:40 -0700
commita5e7ff771d657258cedcc7a8b3ce265c655f0860 (patch)
treeea5fdbbee32c1b9917a7ece03f6a1a70ee8e63fa /azalea-brigadier/src/parse_results.rs
parentda73b4316de4b26322c53f14222c7751a0be55a1 (diff)
downloadazalea-drasl-a5e7ff771d657258cedcc7a8b3ce265c655f0860.tar.xz
implement missing brigadier features and cleanup some more
Diffstat (limited to 'azalea-brigadier/src/parse_results.rs')
-rw-r--r--azalea-brigadier/src/parse_results.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/azalea-brigadier/src/parse_results.rs b/azalea-brigadier/src/parse_results.rs
index a2cefcf7..73de8d47 100644
--- a/azalea-brigadier/src/parse_results.rs
+++ b/azalea-brigadier/src/parse_results.rs
@@ -1,14 +1,14 @@
use std::{collections::HashMap, fmt::Debug, rc::Rc};
use crate::{
- context::CommandContextBuilder, exceptions::CommandSyntaxException,
- string_reader::StringReader, tree::CommandNode,
+ context::CommandContextBuilder, errors::CommandSyntaxError, string_reader::StringReader,
+ tree::CommandNode,
};
pub struct ParseResults<'a, S> {
pub context: CommandContextBuilder<'a, S>,
pub reader: StringReader,
- pub exceptions: HashMap<Rc<CommandNode<S>>, CommandSyntaxException>,
+ pub exceptions: HashMap<Rc<CommandNode<S>>, CommandSyntaxError>,
}
impl<S> Debug for ParseResults<'_, S> {