Fixed saturation
This commit is contained in:
parent
0d6dd62172
commit
73b37f0bec
3 changed files with 9 additions and 9 deletions
|
|
@ -10,11 +10,11 @@ public class avocadoFruit extends Item {
|
||||||
|
|
||||||
public avocadoFruit() {
|
public avocadoFruit() {
|
||||||
this(new Settings()
|
this(new Settings()
|
||||||
.food(new FoodComponent.Builder()
|
.food(new FoodComponent.Builder()
|
||||||
.hunger(5)
|
.hunger(5)
|
||||||
.saturationModifier(5)
|
.saturationModifier(1f)
|
||||||
.build()
|
.build()
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -20,8 +20,8 @@ public class SashimiBase extends FishBase {
|
||||||
public SashimiBase(){
|
public SashimiBase(){
|
||||||
this(new Settings()
|
this(new Settings()
|
||||||
.food(new FoodComponent.Builder()
|
.food(new FoodComponent.Builder()
|
||||||
.hunger(5)
|
.hunger(3)
|
||||||
.saturationModifier(6)
|
.saturationModifier(1f)
|
||||||
.build()
|
.build()
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
|
||||||
|
|
@ -20,8 +20,8 @@ public abstract class NigiriBase extends SushiFoodItemBase {
|
||||||
public NigiriBase(){
|
public NigiriBase(){
|
||||||
this(new Settings()
|
this(new Settings()
|
||||||
.food(new FoodComponent.Builder()
|
.food(new FoodComponent.Builder()
|
||||||
.hunger(2)
|
.hunger(5)
|
||||||
.saturationModifier(1.5f)
|
.saturationModifier(1f)
|
||||||
.build()
|
.build()
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue