X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=main.c;h=be3f2f15ac6eec0066cb7d212c1aa457ef0bb4b4;hb=1c4097314abd4a1fbf380fba17dcd5a499a11eca;hp=9c56a0e06760a36644caabc9b1ae96993a94b77c;hpb=b560b0f59754112b4a1cf0daef224d24bcdf2188;p=open-adventure.git diff --git a/main.c b/main.c index 9c56a0e..be3f2f1 100644 --- a/main.c +++ b/main.c @@ -1070,12 +1070,11 @@ L2630: Laction: switch (action(cmdin, part, VERB, obj)) { - case 2: return true; + case 2: + return true; case 8: - if (playermove(cmdin, VERB, NUL)) - return true; - else - goto L2000; + playermove(cmdin, VERB, NUL); + return true; case 2000: goto L2000; case 2012: goto L2012; case 2600: goto L2600; @@ -1103,3 +1102,5 @@ Laction: BUG(99); } } + +/* EMD */