refactor: a few small efficiency improvements

This commit is contained in:
2025-02-19 08:02:11 -05:00
parent aa27d9fd36
commit c2da997b71
3 changed files with 17 additions and 6 deletions

View File

@@ -9,7 +9,7 @@ use azalea::{
use bevy_ecs::{entity::Entity, query::With};
use futures::lock::Mutex;
pub type Ctx<'a> = CommandContext<Mutex<CommandSource>>;
pub type Ctx = CommandContext<Mutex<CommandSource>>;
pub struct CommandSource {
pub client: Client,