mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-27 06:50:12 +01:00
SPIGOT-4887: Villager level minimum is 1
This commit is contained in:
parent
d20328368c
commit
0036d1b753
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ public class CraftVillager extends CraftAbstractVillager implements Villager {
|
|||
|
||||
@Override
|
||||
public void setVillagerLevel(int level) {
|
||||
Preconditions.checkArgument(0 <= level && level <= 5, "level must be between [0, 5]");
|
||||
Preconditions.checkArgument(1 <= level && level <= 5, "level must be between [1, 5]");
|
||||
|
||||
getHandle().setVillagerData(getHandle().getVillagerData().withLevel(level));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue