aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_remove_mob_effect.rs
blob: 08d9416e75a933afaee0d0cd4c4c8634f87b0652 (plain)
1
2
3
4
5
6
7
8
9
10
use azalea_buf::AzBuf;
use azalea_protocol_macros::ClientboundGamePacket;
use azalea_world::MinecraftEntityId;

#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)]
pub struct ClientboundRemoveMobEffect {
    #[var]
    pub entity_id: MinecraftEntityId,
    pub effect: azalea_registry::MobEffect,
}