mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-24 09:18:55 +05:00
17 lines
530 B
C++
17 lines
530 B
C++
#include "stdafx.h"
|
|
#include "net.minecraft.world.entity.h"
|
|
#include "HealthBoostMobEffect.h"
|
|
|
|
HealthBoostMobEffect::HealthBoostMobEffect(int id, bool isHarmful, eMinecraftColour color) : MobEffect(id, isHarmful, color)
|
|
{
|
|
}
|
|
|
|
void HealthBoostMobEffect::removeAttributeModifiers(shared_ptr<LivingEntity> entity, BaseAttributeMap *attributes, int amplifier)
|
|
{
|
|
MobEffect::removeAttributeModifiers(entity, attributes, amplifier);
|
|
if (entity->getHealth() > entity->getMaxHealth())
|
|
{
|
|
entity->setHealth(entity->getMaxHealth());
|
|
}
|
|
}
|