X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;ds=sidebyside;f=actions.c;h=6be80f1e55eb4c9dca3512077be1dc6fcbab08da;hb=b22d6a65b9a34f1db5cff6b738141159ee382eaf;hp=1031d8ef19ef1915a1ef7b828a17e3e83e35cc61;hpb=6319d27481e153088912a2935b6f41e8ecca47fd;p=open-adventure.git diff --git a/actions.c b/actions.c index 1031d8e..6be80f1 100644 --- a/actions.c +++ b/actions.c @@ -1108,29 +1108,26 @@ L5100: goto L5010; if ((LIQ(0) == obj && HERE(BOTTLE)) || obj == LIQLOC(game.loc)) goto L5010; - if (obj != OIL || !HERE(URN) || game.prop[URN] == 0) - goto L5120; - obj=URN; - goto L5010; -L5120: - if (obj != PLANT || !AT(PLANT2) || game.prop[PLANT2] == 0) - goto L5130; - obj=PLANT2; - goto L5010; -L5130: - if (obj != KNIFE || game.knfloc != game.loc) - goto L5140; - game.knfloc= -1; - SPK=116; - return(2011); -L5140: - if (obj != ROD || !HERE(ROD2)) - goto L5190; - obj=ROD2; - goto L5010; -L5190: + if (obj == OIL && HERE(URN) && game.prop[URN] != 0) { + obj=URN; + goto L5010; + } + if (obj == PLANT && AT(PLANT2) && game.prop[PLANT2] != 0) { + obj=PLANT2; + goto L5010; + } + if (obj == KNIFE && game.knfloc == game.loc) { + game.knfloc= -1; + SPK=116; + return(2011); + } + if (obj == ROD && HERE(ROD2)) { + obj=ROD2; + goto L5010; + } if ((verb == FIND || verb == INVENT) && WD2 <= 0) goto L5010; + SETPRM(1,WD1,WD1X); RSPEAK(256); return(2012);