Skip to content

Commit

Permalink
Allow dried foods in statistics analyzer, fixes [#19]
Browse files Browse the repository at this point in the history
  • Loading branch information
bluehexagons committed Nov 28, 2023
1 parent 0aafa9e commit 90fe59b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion html/foodguide.js
Original file line number Diff line number Diff line change
Expand Up @@ -1153,7 +1153,7 @@ import { isBestStat, isStat, makeImage, makeLinkable, pl } from './utils.js';

while (i--) {
if (!ingredients[i].skip) {
if (!ingredients[i].uncookable && (!ingredients[i].cooked || ingredients[i].ideal) && (!ingredients[i].rackdried || ingredients[i].ideal) && idealIngredients.indexOf(ingredients[i]) === -1) {
if (!ingredients[i].uncookable && (!ingredients[i].cooked || ingredients[i].ideal) && idealIngredients.indexOf(ingredients[i]) === -1) {
tryPush(ingredients[i]);
}
} else {
Expand Down

0 comments on commit 90fe59b

Please sign in to comment.