Skip to content

Commit e4531b8

Browse files
committed
Fmt
1 parent 797fd2a commit e4531b8

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/bin/src/packet_handlers/play_packets/set_player_position.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,10 @@ pub fn handle(
7474
} else {
7575
trace!(
7676
"Updated position for player {}: ({}, {}, {})",
77-
eid, new_position.x, new_position.y, new_position.z
77+
eid,
78+
new_position.x,
79+
new_position.y,
80+
new_position.z
7881
);
7982
}
8083
}

src/lib/inventories/src/inventory.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use crate::errors::InventoryError;
22
use crate::slot::InventorySlot;
3-
use crate::{InventoryUpdate, INVENTORY_UPDATES_QUEUE};
3+
use crate::{INVENTORY_UPDATES_QUEUE, InventoryUpdate};
44
use bevy_ecs::prelude::{Component, Entity};
55

66
#[derive(Component)]

0 commit comments

Comments
 (0)