Made 'steak' a type of 'beef'.

Updated write-up.
Updated chart.
This commit is contained in:
Woody Folsom
2012-03-12 22:11:41 -04:00
parent 60ef59e00b
commit 1a6407bdf0
6 changed files with 88 additions and 169 deletions

View File

@@ -29,7 +29,7 @@ public class Ingredient {
switch (type) {
case BEEF :
//For our purposes, veal is just expensive beef
return item.contains("beef") || item.contains("veal");
return item.contains("beef") || item.contains("veal") || item.contains("steak");
case DAIRY :
return item.contains("margarine") || item.contains("milk");
case EGGS :