Limiting to 20 cows on farm.

logins
Thomas Hintz 5 years ago
parent f6d893eb60
commit b4416783ba

@ -372,6 +372,12 @@
(push-message player (push-message player
(conc "Could not buy " unnormalized-crop ". Not enough credit.")) (conc "Could not buy " unnormalized-crop ". Not enough credit."))
#f) #f)
((and (eq? unnormalized-crop 'cows)
(= (- (player-asset 'cows player)
(fold + 0 (map cdr (player-ridges player))))
20))
(push-message player (conc "Could not buy " unnormalized-crop " because it would exceed maximum allowed on farm."))
#f)
(else (else
(let ((assets (player-assets player))) (let ((assets (player-assets player)))
(set! (set!
@ -1698,9 +1704,6 @@
;; make sure two players can't have the same name ;; make sure two players can't have the same name
;; bug: harvest action multiplayer doesn't flow right for other players ;; bug: harvest action multiplayer doesn't flow right for other players
;; info actions should look better ;; info actions should look better
;; limit to 20 cows
;; don't give extra money for extra tractors
;; you can get $50 from harvest ;; you can get $50 from harvest
;; buy ifs with blank box
;; ran out of otbs ;; ran out of otbs
;; bug: new websocket messages should not reset IFS card selection ;; bug: new websocket messages should not reset IFS card selection

Loading…
Cancel
Save