diff --git a/overcooked_simulator/game_content/environment_config.yaml b/overcooked_simulator/game_content/environment_config.yaml
index 400f16d1d2f38713cd1ea6cada4ec419607ff57b..594decfa07a695e1e14cc78118c1034a5ebf8aaa 100644
--- a/overcooked_simulator/game_content/environment_config.yaml
+++ b/overcooked_simulator/game_content/environment_config.yaml
@@ -11,16 +11,16 @@ orders:
     duration_sample:
       func: uniform
       kwargs:
-        a: 3
-        b: 5
+        a: 40
+        b: 60
     max_orders: 6
     num_start_meals: 3
     sample_on_dur: true
     sample_on_dur_func:
       func: uniform
       kwargs:
-        a: 1
-        b: 2
+        a: 10
+        b: 20
     sample_on_serving: false
     score_calc_gen_kwargs:
       other: 0
diff --git a/overcooked_simulator/game_content/item_info.yaml b/overcooked_simulator/game_content/item_info.yaml
index f87d661701f6d6e2a6465addaf395b3722f3f1ca..777e5f28e106587285ecf8eb6d1e77e23911914e 100644
--- a/overcooked_simulator/game_content/item_info.yaml
+++ b/overcooked_simulator/game_content/item_info.yaml
@@ -44,30 +44,30 @@ Bun:
 ChoppedTomato:
   type: Ingredient
   needs: [ Tomato ]
-  seconds: 0.1
+  seconds: 4.0
   equipment: CuttingBoard
 
 ChoppedLettuce:
   type: Ingredient
   needs: [ Lettuce ]
-  seconds: 0.1
+  seconds: 3.0
   equipment: CuttingBoard
 
 ChoppedOnion:
   type: Ingredient
   needs: [ Onion ]
-  seconds: 0.1
+  seconds: 5.0
   equipment: CuttingBoard
 
 ChoppedMeat:
   type: Ingredient
   needs: [ Meat ]
-  seconds: 0.1
+  seconds: 4.0
   equipment: CuttingBoard
 
 CookedPatty:
   type: Ingredient
-  seconds: 2.0
+  seconds: 5.0
   needs: [ ChoppedMeat ]
   equipment: Pan
 
@@ -86,11 +86,11 @@ Salad:
 TomatoSoup:
   type: Meal
   needs: [ ChoppedTomato, ChoppedTomato, ChoppedTomato ]
-  seconds: 3.0
+  seconds: 6.0
   equipment: Pot
 
 OnionSoup:
   type: Meal
   needs: [ ChoppedOnion, ChoppedOnion, ChoppedOnion ]
-  seconds: 3.0
+  seconds: 6.0
   equipment: Pot
diff --git a/overcooked_simulator/game_content/item_info_debug.yaml b/overcooked_simulator/game_content/item_info_debug.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..32c8696610ab0e1b3f059071da01d7c182e6b80f
--- /dev/null
+++ b/overcooked_simulator/game_content/item_info_debug.yaml
@@ -0,0 +1,96 @@
+CuttingBoard:
+  type: Equipment
+
+Sink:
+  type: Equipment
+
+Stove:
+  type: Equipment
+
+Pot:
+  type: Equipment
+  equipment: Stove
+
+Pan:
+  type: Equipment
+  equipment: Stove
+
+DirtyPlate:
+  type: Equipment
+
+Plate:
+  type: Equipment
+  needs: [ DirtyPlate ]
+  seconds: 1.0
+  equipment: Sink
+
+# --------------------------------------------------------------------------------
+
+Tomato:
+  type: Ingredient
+
+Lettuce:
+  type: Ingredient
+
+Onion:
+  type: Ingredient
+
+Meat:
+  type: Ingredient
+
+Bun:
+  type: Ingredient
+
+ChoppedTomato:
+  type: Ingredient
+  needs: [ Tomato ]
+  seconds: 0.1
+  equipment: CuttingBoard
+
+ChoppedLettuce:
+  type: Ingredient
+  needs: [ Lettuce ]
+  seconds: 0.1
+  equipment: CuttingBoard
+
+ChoppedOnion:
+  type: Ingredient
+  needs: [ Onion ]
+  seconds: 0.1
+  equipment: CuttingBoard
+
+ChoppedMeat:
+  type: Ingredient
+  needs: [ Meat ]
+  seconds: 0.1
+  equipment: CuttingBoard
+
+CookedPatty:
+  type: Ingredient
+  seconds: 2.0
+  needs: [ ChoppedMeat ]
+  equipment: Pan
+
+# --------------------------------------------------------------------------------
+
+Burger:
+  type: Meal
+  needs: [ Bun, ChoppedLettuce, ChoppedTomato, CookedPatty ]
+  equipment: ~
+
+Salad:
+  type: Meal
+  needs: [ ChoppedLettuce, ChoppedTomato ]
+  equipment: ~
+
+TomatoSoup:
+  type: Meal
+  needs: [ ChoppedTomato, ChoppedTomato, ChoppedTomato ]
+  seconds: 3.0
+  equipment: Pot
+
+OnionSoup:
+  type: Meal
+  needs: [ ChoppedOnion, ChoppedOnion, ChoppedOnion ]
+  seconds: 3.0
+  equipment: Pot
diff --git a/overcooked_simulator/game_items.py b/overcooked_simulator/game_items.py
index f470d07d92f7a1d3b00b5c1df2b3de0f667db680..4592e68bbe4057719b3618fbf7b34513fb4d232b 100644
--- a/overcooked_simulator/game_items.py
+++ b/overcooked_simulator/game_items.py
@@ -129,6 +129,7 @@ class CookingEquipment(Item):
         ingredients = collections.Counter(
             item.name for item in self.content_list + other
         )
+        print(ingredients)
         return any(
             ingredients <= recipe["recipe"] for recipe in self.transitions.values()
         )
@@ -237,5 +238,6 @@ class Plate(CookingEquipment):
             ):
                 return other.content_list[0].name in self.meals
             return False
-        else:
+        elif self.clean:
             return True
+        return False
diff --git a/overcooked_simulator/gui_2d_vis/overcooked_gui.py b/overcooked_simulator/gui_2d_vis/overcooked_gui.py
index 6240f4d9706d96ad9eedab4c3deaf927718eb1c1..e7957d95d01255d19461e0558c8e4382113bf7c2 100644
--- a/overcooked_simulator/gui_2d_vis/overcooked_gui.py
+++ b/overcooked_simulator/gui_2d_vis/overcooked_gui.py
@@ -524,8 +524,8 @@ class PyGameGUI:
         """
 
         pos = counter.pos * self.grid_size
-
-        self.draw_thing(pos, self.visualization_config["Counter"]["parts"])
+        if counter.__class__.__name__ != "Trash":
+            self.draw_thing(pos, self.visualization_config["Counter"]["parts"])
         if str(counter) in self.visualization_config:
             self.draw_thing(pos, self.visualization_config[str(counter)]["parts"])
         else:
diff --git a/overcooked_simulator/gui_2d_vis/visualization.yaml b/overcooked_simulator/gui_2d_vis/visualization.yaml
index 35ce1d927a7b5f72a2655932b45e9488703834eb..532d9e2ada05484c4a66e228cf2c0fd38fb2f5b3 100644
--- a/overcooked_simulator/gui_2d_vis/visualization.yaml
+++ b/overcooked_simulator/gui_2d_vis/visualization.yaml
@@ -2,7 +2,7 @@
 
 GameWindow:
   WhatIsFixed: grid  # grid or window_width or window_height
-  size: 50
+  size: 80
   screen_margin: 100
   min_width: 700
   min_height: 600