commit 67bc3d1e279264df16b3300c3303ec44ae14da9e
Author: spesk <spw01@protonmail.com>
Date: Wed Feb 8 11:06:06 2023 -0500
Fixed missing parens. Trading prototype done.
diff --git a/game.lisp b/game.lisp
index c8f59a5..06b5f89 100644
--- a/game.lisp
+++ b/game.lisp
@@ -160,7 +160,7 @@ Actions:
(if (member item-to-buy '("gruel" "ammo" "petrofuel" "archeotech" "spice") :test #'string=)
(progn
(buy-transaction item-to-buy quantity)
- (trade-menu))))
+ (trade-menu)))))
(defun sell-transaction (resource quantity)
@@ -209,7 +209,7 @@ Actions:
(if (member item-to-sell '("gruel" "ammo" "petrofuel" "archeotech" "spice") :test #'string=)
(progn
(sell-transaction item-to-sell quantity)
- (trade-menu))))
+ (trade-menu)))))
(defun display-prices ()