awlite

POSIX AWK port of Text Elite game
git clone git://git.luxferre.top/awlite.git
Log | Files | Refs

commit 017b29dae98baf2d2cf4c9cc9c9c15b8118be6f9
parent 35c38bcd66dafdb102536020e7e706d089498a90
Author: Luxferre <lux@ferre>
Date:   Sun, 21 Jan 2024 22:30:52 +0200

fixed dofuel -> dohold

Diffstat:
Mawlite.awk | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/awlite.awk b/awlite.awk @@ -625,7 +625,7 @@ BEGIN { else if(action == "s" || action == "sell") dosell(paramstr) else if(action == "j" || action == "jump") dojump(paramstr) else if(action == "f" || action == "fuel") dofuel(paramstr) - else if(action == "ho" || action == "hold") dofuel(paramstr) + else if(action == "ho" || action == "hold") dohold(paramstr) else if(CHEAT && action == "cash") docash(paramstr) else if(CHEAT && action == "sneak") dosneak(paramstr) else printf("Unknown command")