瀏覽代碼

Fixed missing parens. Trading prototype done.

spesk 2 年之前
父節點
當前提交
67bc3d1e27
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      game.lisp

+ 2 - 2
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 ()