refactor: utils -> system

This commit is contained in:
Ryan 2025-02-22 14:02:10 -05:00
parent 9b9ccfd2b9
commit aaad1fe78a
Signed by: ErrorNoInternet
GPG Key ID: 2486BFB7B1E6A4A3
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ pub mod direction;
pub mod events;
pub mod logging;
pub mod player;
pub mod utils;
pub mod system;
pub mod vec3;
use mlua::{Lua, Table};
@ -32,7 +32,7 @@ pub fn register_functions(lua: &Lua, globals: &Table) -> mlua::Result<()> {
block::register_functions(lua, globals)?;
logging::register_functions(lua, globals)?;
utils::register_functions(lua, globals)
system::register_functions(lua, globals)
}
pub fn reload(lua: &Lua, sender: Option<String>) -> Result<(), Error> {