aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_update_mob_effect.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/packets/game/c_update_mob_effect.rs')
-rwxr-xr-xazalea-protocol/src/packets/game/c_update_mob_effect.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/azalea-protocol/src/packets/game/c_update_mob_effect.rs b/azalea-protocol/src/packets/game/c_update_mob_effect.rs
index 6a31ccab..fe8e8f2e 100755
--- a/azalea-protocol/src/packets/game/c_update_mob_effect.rs
+++ b/azalea-protocol/src/packets/game/c_update_mob_effect.rs
@@ -1,11 +1,12 @@
use azalea_buf::AzBuf;
use azalea_protocol_macros::ClientboundGamePacket;
use azalea_registry::MobEffect;
+use azalea_world::MinecraftEntityId;
#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)]
pub struct ClientboundUpdateMobEffect {
#[var]
- pub entity_id: u32,
+ pub entity_id: MinecraftEntityId,
pub mob_effect: MobEffect,
#[var]
pub effect_amplifier: u32,