refactor: clean up import paths

This commit is contained in:
2025-03-15 15:07:26 -04:00
parent e70b8eca84
commit 41b3375749
6 changed files with 14 additions and 14 deletions

View File

@@ -1,5 +1,5 @@
use azalea::entity::LookDirection;
use mlua::{FromLua, IntoLua, Lua, Result, Value};
use mlua::{Error, FromLua, IntoLua, Lua, Result, Value};
#[derive(Clone)]
pub struct Direction {
@@ -37,7 +37,7 @@ impl FromLua for Direction {
}
})
} else {
Err(mlua::Error::FromLuaConversionError {
Err(Error::FromLuaConversionError {
from: value.type_name(),
to: "Direction".to_string(),
message: None,