Commit be2a5f47 authored by Matt Lowe's avatar Matt Lowe
Browse files

Creatures can now have power less than -1

Addresses issue from #934
parent db23d3c9
...@@ -87,8 +87,6 @@ void Server_Card::setPT(const QString &_pt) ...@@ -87,8 +87,6 @@ void Server_Card::setPT(const QString &_pt)
if (p1.isEmpty() || p2.isEmpty()) if (p1.isEmpty() || p2.isEmpty())
return; return;
if ((p1[0] == '+') || (p2[0] == '+')) { if ((p1[0] == '+') || (p2[0] == '+')) {
if (power < 0)
power = 0;
if (toughness < 0) if (toughness < 0)
toughness = 0; toughness = 0;
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment