jleclanche / fireplace

A Hearthstone simulator in Python
https://hearthsim.info
GNU Affero General Public License v3.0
673 stars 150 forks source link

Bug: buff cards with no id #426

Closed longern closed 7 years ago

longern commented 7 years ago

In fireplace/cards/init.py, Line 21 card = cardxml.CardXML(id) should be replace by

card = cardxml.CardXML()
card.id = id

since the parament of CardXML represents locale

longern commented 7 years ago

It seems that the default version of hearthstone package is too old (2.3)