mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 02:03:38 +00:00
17 lines
627 B
C++
17 lines
627 B
C++
#include "../Platform/stdafx.h"
|
|
#include "../Headers/net.minecraft.world.entity.h"
|
|
#include "HealthBoostMobEffect.h"
|
|
|
|
HealthBoostMobEffect::HealthBoostMobEffect(int id, bool isHarmful,
|
|
eMinecraftColour color)
|
|
: MobEffect(id, isHarmful, color) {}
|
|
|
|
void HealthBoostMobEffect::removeAttributeModifiers(
|
|
std::shared_ptr<LivingEntity> entity, BaseAttributeMap* attributes,
|
|
int amplifier) {
|
|
MobEffect::removeAttributeModifiers(entity, attributes, amplifier);
|
|
if (entity->getHealth() > entity->getMaxHealth()) {
|
|
entity->setHealth(entity->getMaxHealth());
|
|
}
|
|
}
|