update card view

This commit is contained in:
stryan 2021-11-16 18:07:13 -05:00
parent 828c4e0e37
commit 22fe7ad4ed
1 changed files with 1 additions and 1 deletions

View File

@ -241,5 +241,5 @@ func console(c *coordinator.Coordinator) {
}
func view_card(c *tome_lib.Card) string {
return fmt.Sprintf("%v %v/%v %v %v %v %v %v %v", c.Type, c.BasePower, c.Power, c.Id, c.Sick, c.Counters, c.Owner, c.Position, c.Effects)
return fmt.Sprintf("%v %v/%v %v %v %v %v %v %v %v %v %v", c.Type, c.BasePower, c.Power, c.Id, c.Sick, c.Spell, c.Token, c.Phased, c.Counters, c.Owner, c.Position, c.Effects)
}