Skip to content

Commit

Permalink
Merge pull request #57 from kymckay/Fix-milk-price
Browse files Browse the repository at this point in the history
Fix milk price
  • Loading branch information
kymckay authored Mar 4, 2021
2 parents e768576 + 2852516 commit ee2a182
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion data/menu.csv
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ B111, Water,2.0, false! L! None
B112, Milkshake,4, false! S|M|L! Regular
B113, Banana Smoothie,4.2, false! M! None
B114, Strawbery Smoothie,4.3, false! S|M|L! None
B115, Frappuccino,3.8, true! S|M|L! Soy
B115, Frappuccino,3.8, true! S|M|L! Regular|Soy
B116, Hot Chocolate,3.5, true! S|M|L! Regular|Oat
B117, Orange Juice ,2.8, false! M! None
B118, Apple Juice,2.8, false! M! None
2 changes: 1 addition & 1 deletion src/main/java/sim/coffee/Milk.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//used in Beverage and OrderBeverage objects
public enum Milk {
NONE (0),
REGULAR (0.1),
REGULAR (0),
SOY (0.1),
OAT (0.15);

Expand Down

0 comments on commit ee2a182

Please sign in to comment.