X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;ds=sidebyside;f=main.c;h=b3a8f95fd0fc02a75ce31844423f2df4493c273e;hb=67a887f432fa175300e6d51069587175dee76e17;hp=809574b6c35cc82e02208a05862133463aa26e2b;hpb=00c2182d9b21b3d9071b090bad7b168b13322ee3;p=open-adventure.git diff --git a/main.c b/main.c index 809574b..b3a8f95 100644 --- a/main.c +++ b/main.c @@ -656,7 +656,7 @@ static void playermove(int motion) /* Look for a way to fulfil the motion verb passed in - travel_entry indexes * the beginning of the motion entries for here (game.loc). */ for (;;) { - if (T_TERMINATE(travel[travel_entry]) || + if ((travel[travel_entry].motion == HERE) || travel[travel_entry].motion == motion) break; if (travel[travel_entry].stop) {