about summary refs log tree commit diff stats
path: root/050scenario.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-08-25 10:11:04 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-08-25 10:15:05 -0700
commitf385814f3ddbff620642e0986a421ed5fd13ef76 (patch)
tree1f9c0a2c43cf1d96a686b5333cbd99c037594f2d /050scenario.cc
parent5ea70e9594264510ed4062dbbe6bf3088cf8d69c (diff)
downloadmu-f385814f3ddbff620642e0986a421ed5fd13ef76.tar.gz
3247
Diffstat (limited to '050scenario.cc')
-rw-r--r--050scenario.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/050scenario.cc b/050scenario.cc
index 7129ce82..4ba95a29 100644
--- a/050scenario.cc
+++ b/050scenario.cc
@@ -199,10 +199,10 @@ void bind_special_scenario_names(recipe_ordinal r) {
   // Special Scenario Variable Names(r)
   // End Special Scenario Variable Names(r)
 }
-:(before "Done Placing Ingredient(inst, in, caller)")
-maybe_make_raw(inst.ingredients.at(in), caller);
-:(before "Done Placing Product(inst, out, caller)")
-maybe_make_raw(inst.products.at(out), caller);
+:(before "Done Placing Ingredient(ingredient, inst, caller)")
+maybe_make_raw(ingredient, caller);
+:(before "Done Placing Product(product, inst, caller)")
+maybe_make_raw(product, caller);
 :(code)
 void maybe_make_raw(reagent& r, const recipe& caller) {
   if (!is_special_name(r.name)) return;