Skip to content

Commit

Permalink
Merge pull request Simple-Station#113 from Fansana/Suacy_Sauces
Browse files Browse the repository at this point in the history
Disable Hunger Mechanic for Now
  • Loading branch information
FoxxoTrystan authored Aug 17, 2024
2 parents 6784811 + 0a996fa commit 02b3c1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Content.Server/FloofStation/Traits/LewdTraitSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ public override void Update(float frameTime)
if (_hunger.GetHungerThreshold(hunger) < HungerThreshold.Okay)
continue;

_hunger.ModifyHunger(uid, -containerCum.HungerUsage, hunger);
//_hunger.ModifyHunger(uid, -containerCum.HungerUsage, hunger);
}

if (!_solutionContainer.ResolveSolution(uid, containerCum.SolutionName, ref containerCum.Solution))
Expand All @@ -311,7 +311,7 @@ public override void Update(float frameTime)
if (_hunger.GetHungerThreshold(hunger) < HungerThreshold.Okay)
continue;

_hunger.ModifyHunger(uid, -containerMilk.HungerUsage, hunger);
//_hunger.ModifyHunger(uid, -containerMilk.HungerUsage, hunger);
}

if (!_solutionContainer.ResolveSolution(uid, containerMilk.SolutionName, ref containerMilk.Solution))
Expand Down

0 comments on commit 02b3c1e

Please sign in to comment.