Преглед на файлове

Fixed missing parens. Trading prototype done.

spesk преди 1 година
родител
ревизия
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 ()