From 137493320cc131a39b2c9328a8e63548a826824b Mon Sep 17 00:00:00 2001 From: ErrorNoInternet Date: Sat, 8 Mar 2025 15:52:45 -0500 Subject: [PATCH] style: format files --- src/lua/client/world/mod.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/lua/client/world/mod.rs b/src/lua/client/world/mod.rs index 3cc8806..54bc9da 100644 --- a/src/lua/client/world/mod.rs +++ b/src/lua/client/world/mod.rs @@ -51,7 +51,11 @@ pub fn find_blocks( .collect()) } -pub async fn find_all_entities(lua: Lua, client: UserDataRef, (): ()) -> Result> { +pub async fn find_all_entities( + lua: Lua, + client: UserDataRef, + (): (), +) -> Result> { let mut matched = Vec::new(); for (position, custom_name, kind, uuid, direction, id, owner_uuid, pose) in get_entities!(client)