You have used it.
20 days ago - https://itch.io/post/1532628
"If I use submit_command, there is a parameter stop_tick = "true". I imagine that serves the same purpose as the stop_tick statement. Correct?"
Furthermore, everything seems to be working well based on a test I just performed:
start_at = my_location locations {
my_location : location "You are in a room." ;
} on_command {
: match "grab lamp" {
: set_sentence "get lamp";
}
: match "grasp lamp" {
: submit_command "get lamp" stop_tick = "false" ;
: print "YYYYY" ;
}
: match "get lamp" {
: print "Getting lamp." ;
}
}
on_tick {
: print "tick()" ;
}