diff options
| author | Shayne Hartford <shaybox@shaybox.com> | 2024-10-21 20:21:38 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-21 19:21:38 -0500 |
| commit | cd2f298a62819a3fabc52ef17560c2124a74d555 (patch) | |
| tree | 3e32e4ccc7d9f095696c8e23b688b06cf1188f76 /azalea-client/src/client.rs | |
| parent | 5535877a4bddcdc30ef8f752a90e6845b308c3c2 (diff) | |
| download | azalea-drasl-cd2f298a62819a3fabc52ef17560c2124a74d555.tar.xz | |
Rename InventoryComponent to Inventory to match other components (#177)
(cherry picked from commit 266058a8d441169b46ef819595eee62337ab324c)
Diffstat (limited to 'azalea-client/src/client.rs')
| -rw-r--r-- | azalea-client/src/client.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea-client/src/client.rs b/azalea-client/src/client.rs index 6cb590df..0d0b18f0 100644 --- a/azalea-client/src/client.rs +++ b/azalea-client/src/client.rs @@ -6,7 +6,7 @@ use crate::{ disconnect::{DisconnectEvent, DisconnectPlugin}, events::{Event, EventPlugin, LocalPlayerEvents}, interact::{CurrentSequenceNumber, InteractPlugin}, - inventory::{InventoryComponent, InventoryPlugin}, + inventory::{Inventory, InventoryPlugin}, local_player::{ death_event, GameProfileComponent, Hunger, InstanceHolder, PermissionLevel, PlayerAbilities, TabList, @@ -688,7 +688,7 @@ pub struct LocalPlayerBundle { pub struct JoinedClientBundle { // note that InstanceHolder isn't here because it's set slightly before we fully join the world pub physics_state: PhysicsState, - pub inventory: InventoryComponent, + pub inventory: Inventory, pub tab_list: TabList, pub current_sequence_number: CurrentSequenceNumber, pub last_sent_direction: LastSentLookDirection, |
