X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=actions.c;h=658d95d1789fe6df51ab990128d0cf807d790c63;hb=9726d8207cc7eecf0d6c24b0f1a34eeb457a564e;hp=27364b7b2e034706372d7ffd92a22a0a71cc5be4;hpb=71abcb4e650191977a679d86549d28a69f8feb1d;p=open-adventure.git diff --git a/actions.c b/actions.c index 27364b7..658d95d 100644 --- a/actions.c +++ b/actions.c @@ -1,9 +1,9 @@ /* * Actions for the dungeon-running code. * - * Copyright (c) 1977, 2005 by Will Crowther and Don Woods - * Copyright (c) 2017 by Eric S. Raymond - * SPDX-License-Identifier: BSD-2-clause + * SPDX-FileCopyrightText: 1977, 2005 by Will Crowther and Don Woods + * SPDX-FileCopyrightText 2017 by Eric S. Raymond + * SPDX-License-Identifier: BSD-2-Clause */ #include @@ -231,7 +231,10 @@ static phase_codes_t bigwords(vocab_t id) } } else { /* Magic-word sequebce was started but is incorrect */ - rspeak(START_OVER); + if (settings.oldstyle || game.seenbigwords) + rspeak(START_OVER); + else + rspeak(WELL_POINTLESS); game.foobar = WORD_EMPTY; return GO_CLEAROBJ; }