about summary refs log tree commit diff stats
path: root/075scenario_console.cc
diff options
context:
space:
mode:
Diffstat (limited to '075scenario_console.cc')
-rw-r--r--075scenario_console.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/075scenario_console.cc b/075scenario_console.cc
index 7e144962..0f7d649f 100644
--- a/075scenario_console.cc
+++ b/075scenario_console.cc
@@ -48,7 +48,7 @@ Recipe_ordinal["assume-console"] = ASSUME_CONSOLE;
 case ASSUME_CONSOLE: {
   // create a temporary recipe just for parsing; it won't contain valid instructions
   istringstream in("[" + current_instruction().ingredients.at(0).name + "]");
-  recipe r = slurp_recipe(in);
+  recipe r = slurp_body(in);
   long long int num_events = count_events(r);
   // initialize the events
   long long int size = num_events*size_of_event() + /*space for length*/1;