skip draw step on 0 life

This commit is contained in:
stryan 2021-09-30 22:08:27 -04:00
parent 75e2e7f86e
commit 61fe6b5936
1 changed files with 11 additions and 2 deletions

View File

@ -186,8 +186,17 @@ func (g *Game) PlayerStateAct(id int, cmd string) *GameView {
if g.Status == StatusReady { //first turn
g.Status = StatusPlaying
}
g.CanDraw = true
g.HasDrawn = false
//skip draw step when 0 life
if id == SentinalID && g.SentinalPlayer.Life <= 0 {
g.CanDraw = false
g.HasDrawn = true
} else if id == ScourgeID && g.ScourgePlayer.Life <= 0 {
g.CanDraw = false
g.HasDrawn = true
} else {
g.CanDraw = true
g.HasDrawn = false
}
if id != g.CurrentTurn {
return nil
}