X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=actions.c;h=16d303f10d60c216b128eca5a17af5ec2e9ee2a7;hp=d2eb46ba2320f76f449c5a3a5a60f2a52e2a9272;hb=6521d49c0752da0bf65769a1d38b583d3a2a1854;hpb=f5719f1abaab6728c098756c2441d21801b4b6a3 diff --git a/actions.c b/actions.c index d2eb46b..16d303f 100644 --- a/actions.c +++ b/actions.c @@ -1138,7 +1138,7 @@ int action(FILE *input, struct command_t *command) case PART: return reservoir(); default: - BUG(INTRANSITIVE_ACTION_VERB_EXCEEDS_GOTO_LIST); + BUG(INTRANSITIVE_ACTION_VERB_EXCEEDS_GOTO_LIST); // LCOV_EXCL_LINE } } /* FALLTHRU */ @@ -1235,13 +1235,13 @@ int action(FILE *input, struct command_t *command) case PART: return reservoir(); default: - BUG(TRANSITIVE_ACTION_VERB_EXCEEDS_GOTO_LIST); + BUG(TRANSITIVE_ACTION_VERB_EXCEEDS_GOTO_LIST); // LCOV_EXCL_LINE } case unknown: /* Unknown verb, couldn't deduce object - might need hint */ rspeak(WHAT_DO, command->wd1, command->wd1x); return GO_CHECKHINT; default: - BUG(SPEECHPART_NOT_TRANSITIVE_OR_INTRANSITIVE_OR_UNKNOWN); + BUG(SPEECHPART_NOT_TRANSITIVE_OR_INTRANSITIVE_OR_UNKNOWN); // LCOV_EXCL_LINE } }