No need to cast here (thanks Konica)

This commit is contained in:
Camotoy 2021-06-06 14:41:41 -04:00
parent 9568a3a866
commit 3835da288f
No known key found for this signature in database
GPG Key ID: 7EEFB66FE798081F
1 changed files with 1 additions and 1 deletions

View File

@ -309,7 +309,7 @@ public class Entity {
// The value that Java edition gives us is in ticks, but Bedrock uses a float percentage of the strength 0.0 -> 1.0
// The Java client caps its freezing tick percentage at 140
int freezingTicks = Math.min((int) entityMetadata.getValue(), 140);
metadata.put(EntityData.FREEZING_EFFECT_STRENGTH, (freezingTicks / (float) 140));
metadata.put(EntityData.FREEZING_EFFECT_STRENGTH, (freezingTicks / 140f));
break;
}
}