Explorar o código

Fixed missing parens. Trading prototype done.

spesk %!s(int64=2) %!d(string=hai) anos
pai
achega
67bc3d1e27
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  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 ()