Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
530 B · 16 lines
C++
at master
1234567891011121314151617#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()); }}