Skip to content

Commit

Permalink
yizhen fix
Browse files Browse the repository at this point in the history
  • Loading branch information
liamgiraldo committed May 9, 2024
1 parent c698d9e commit fbe249a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,10 @@ public void processCustomers(Player p, Array<Customer> customers) {
// System.out.println("served");
p.dishInventory.clear(0);
c.setShow(false);
return;
// System.out.println(c.getShow());
}
}else if (p.dishInventory.rightFilled()) {
}if (p.dishInventory.rightFilled()) {
if (c.serve(p.dishInventory.get(1))) {
p.dishInventory.clear(1);
c.setShow(false);
Expand Down

0 comments on commit fbe249a

Please sign in to comment.