From be2a5f472035fffcd349575cf621798c2e75e0cd Mon Sep 17 00:00:00 2001 From: Matt Lowe Date: Fri, 10 Apr 2015 12:39:41 +0200 Subject: [PATCH] Creatures can now have power less than -1 Addresses issue from #934 --- common/server_card.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/common/server_card.cpp b/common/server_card.cpp index 39e4aadc..12aa1920 100644 --- a/common/server_card.cpp +++ b/common/server_card.cpp @@ -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; }