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