We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f2c7e4 commit 3b1e656Copy full SHA for 3b1e656
src/game/web.lisp
@@ -80,7 +80,7 @@
80
(my add-announcement
81
(<p :class "game-message"
82
(player-controller-name-to-ml player)
83
- " demanded " demand ".")))
+ " demanded " amount ".")))
84
85
(my-defun web-state 'inform (game-state (message (eql :profit)) &key player amount &allow-other-keys)
86
@@ -180,6 +180,12 @@
180
(t
181
(with-ml-output (format nil " ~{~A ~}" (my args)) " from " (format nil "~A" (my choices) ))))
182
183
+ (loop for c in (choices-list (my choices)) do
184
+ (let-current-values (c)
185
+ (with-ml-output " "
186
+ (html-action-link c
187
+ (my queue-choice c)))))
188
+
189
(html-action-form
190
""
191
((choice (first (choices-list (my choices)))))
0 commit comments