use cigs even when they have no effect

This commit is contained in:
Branden J Brown 2024-01-21 18:41:43 -06:00
parent 5e595711d4
commit 935fe8e2e4
1 changed files with 2 additions and 2 deletions

View File

@ -29,9 +29,9 @@ func (i Item) Apply(g *Game) bool {
cur := g.CurrentPlayer() cur := g.CurrentPlayer()
if cur.hp < g.hp { if cur.hp < g.hp {
cur.hp++ cur.hp++
return true // Cigs are always used, even if they have no effect.
} }
return false return true
case ItemBeer: case ItemBeer:
g.PopShell() g.PopShell()
if g.Empty() { if g.Empty() {