fsharp(ygosim): fix: removed debug printfns
Signed-off-by: prescientmoon <git@moonythm.dev>
This commit is contained in:
parent
6189917e92
commit
482a5e4370
|
@ -189,8 +189,6 @@ module Summon =
|
|||
|
||||
let freeZones = 5 - possibleTributes + requiredTributes
|
||||
|
||||
printfn "%i" freeZones
|
||||
|
||||
requiredTributes <= possibleTributes && freeZones > 0
|
||||
|
||||
|
||||
|
@ -236,7 +234,6 @@ module Game =
|
|||
let toDeckBottom (card: CardInstance) (player: Player) = over Player.deck (fun d -> card :: d) player
|
||||
|
||||
let handleMainPhase client board =
|
||||
printfn "%b" <| canNormalSummon board
|
||||
if canNormalSummon board then performNormalSummon client board
|
||||
else board
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
race = Warrior })
|
||||
|
||||
|
||||
let board = over Board.firstPlayer <| toDeckBottom sampleCard <| emptyBoard
|
||||
let board = over Board.secondPlayer <| toDeckBottom sampleCard <| emptyBoard
|
||||
|
||||
let client action =
|
||||
match action with
|
||||
|
|
Loading…
Reference in a new issue