void catch_tell(string str) {
    string a, b;
    if(sscanf(str, "%slist items%s", a, b) == 2) {
        this_object()->force_me("say Well, let me see, I have the following
things for sale...\n"
          " nothing");
        return;
    }
}
