X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=actions.c;h=31fc18691aa60bdeab380933a46b1be2a4fd2824;hp=5f6f670c8861f29d5f81d8edf6183d778d0389fd;hb=ea4986e0f54db8fc89a349a64230154e7e96c6c9;hpb=8f5c262e6dc953447f1a47b45aa045353d97f765 diff --git a/actions.c b/actions.c index 5f6f670..31fc186 100644 --- a/actions.c +++ b/actions.c @@ -121,10 +121,10 @@ static int attack(struct command_t *command) move(DRAGON, LOC_SECRET5); move(RUG, LOC_SECRET5); drop(BLOOD, LOC_SECRET5); - for (obj = 1; obj <= NOBJECTS; obj++) { - if (game.place[obj] == objects[DRAGON].plac || - game.place[obj] == objects[DRAGON].fixd) - move(obj, LOC_SECRET5); + for (obj_t i = 1; i <= NOBJECTS; i++) { + if (game.place[i] == objects[DRAGON].plac || + game.place[i] == objects[DRAGON].fixd) + move(i, LOC_SECRET5); } game.loc = LOC_SECRET5; return GO_MOVE;