Skip to content

Commit

Permalink
[fixes]
Browse files Browse the repository at this point in the history
+ Accidentally changed <= to > when it should be >= for the hunger category check
  • Loading branch information
ForsakenShell committed Jul 17, 2016
1 parent fb0502f commit 2a04e03
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DLL_Project/Detours/FoodUtility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ internal static Thing _BestFoodSourceOnMap( Pawn getter, Pawn eate
!eater.RaceProps.Humanlike
? FoodPreferability.NeverForNutrition
:
eater.needs.food.CurCategory > HungerCategory.UrgentlyHungry
eater.needs.food.CurCategory >= HungerCategory.UrgentlyHungry
? FoodPreferability.RawBad
: FoodPreferability.MealAwful;

Expand Down
Binary file not shown.
Binary file not shown.

0 comments on commit 2a04e03

Please sign in to comment.