Procházet zdrojové kódy

Fixed missing parens. Trading prototype done.

spesk před 2 roky
rodič
revize
67bc3d1e27
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  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 ()