Merge pull request #939 from poixen/pt_fix

Creatures can now have power less than -1
This commit is contained in:
Zach 2015-04-10 16:10:35 -04:00
commit 2a86cf572b

View file

@ -87,8 +87,6 @@ void Server_Card::setPT(const QString &_pt)
if (p1.isEmpty() || p2.isEmpty())
return;
if ((p1[0] == '+') || (p2[0] == '+')) {
if (power < 0)
power = 0;
if (toughness < 0)
toughness = 0;
}