1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-03-26 00:27:08 +01:00

Properly validate boss bar progress

This commit is contained in:
2008Choco 2016-04-11 19:16:25 +10:00 committed by md_5
parent 420b983d59
commit 767f028054

View file

@ -119,6 +119,7 @@ public class CraftBossBar implements BossBar {
@Override
public void setProgress(double progress) {
Preconditions.checkArgument(progress >= 0.0 && progress <= 1.0, "Progress must be between 0.0 and 1.0 (%s)", progress);
handle.setProgress((float) progress);
}