
Hunger effect estimate
Madis0 opened this issue ยท 2 comments
Apparently hunger effect is based on exhaustion: 0.1 * level * second or 0.005 * level * tick, however exhaustion is server-side, so exact calculations cannot be made. Some estimations could be, however, let's try...
Current formula:
StatusEffectInstance hungerEffect = playerEntity.getStatusEffect(StatusEffects.HUNGER);
hungerEffectSaturationLoss = 0;
if(hungerEffect != null) {
float hungerEffectExhaustionLoss = 0.005F * (float)(hungerEffect.getAmplifier() + 1) * hungerEffect.getDuration();
hungerEffectSaturationLoss = (int) Math.ceil(hungerEffectExhaustionLoss / (float)4); // Exhaustion is server-side, so lost saturation is rounded up to be approximate
}
The problem is that the resulting value is not really consistent nor useful for now, might need to work more like #8