Skip to content

Commit

Permalink
Fix saturation being too high on spilling foods
Browse files Browse the repository at this point in the history
  • Loading branch information
KnightMiner committed Jun 7, 2022
1 parent de3a135 commit 24657b8
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{
"type": "tconstruct:restore_hunger",
"hunger": 1,
"saturation": 1.5
"saturation": 0.15
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{
"type": "tconstruct:restore_hunger",
"hunger": 1,
"saturation": 0.2
"saturation": 0.02
},
{
"type": "tconstruct:remove_effect",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{
"type": "tconstruct:restore_hunger",
"hunger": 1,
"saturation": 1.5
"saturation": 0.15
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{
"type": "tconstruct:restore_hunger",
"hunger": 2,
"saturation": 2.4
"saturation": 0.1
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,14 @@ protected void addFluids() {

// foods
addFluid(TinkerFluids.honey.getForgeTag(), slimeballPiece)
.addEffect(new RestoreHungerSpillingEffect(1, 0.2f))
.addEffect(new RestoreHungerSpillingEffect(1, 0.02f))
.addEffect(new RemoveEffectSpillingEffect(MobEffects.POISON));
addFluid(TinkerFluids.beetrootSoup.getForgeTag(), slimeballPiece)
.addEffect(new RestoreHungerSpillingEffect(1, 1.5f));
.addEffect(new RestoreHungerSpillingEffect(1, 0.15f));
addFluid(TinkerFluids.mushroomStew.getForgeTag(), slimeballPiece)
.addEffect(new RestoreHungerSpillingEffect(1, 1.5f));
.addEffect(new RestoreHungerSpillingEffect(1, 0.15f));
addFluid(TinkerFluids.rabbitStew.getForgeTag(), slimeballPiece)
.addEffect(new RestoreHungerSpillingEffect(2, 2.4f));
.addEffect(new RestoreHungerSpillingEffect(2, 0.10f));

// multi-recipes
burningFluid("glass", TinkerTags.Fluids.GLASS_SPILLING, FluidAttributes.BUCKET_VOLUME / 10, 1f, 3);
Expand Down

0 comments on commit 24657b8

Please sign in to comment.