From 78e299fdfd681159798e1477c01cc676a815b7a3 Mon Sep 17 00:00:00 2001 From: Alessandro Marzialetti Date: Wed, 4 Oct 2017 18:44:36 +0200 Subject: [PATCH] Fixed life points not showing (#2868) (#2881) --- cockatrice/src/playertarget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cockatrice/src/playertarget.cpp b/cockatrice/src/playertarget.cpp index 487bb68a..ad2d660b 100644 --- a/cockatrice/src/playertarget.cpp +++ b/cockatrice/src/playertarget.cpp @@ -11,7 +11,7 @@ #endif /* _WIN32 */ PlayerCounter::PlayerCounter(Player *_player, int _id, const QString &_name, int _value, QGraphicsItem *parent) - : AbstractCounter(_player, _id, _name, false, _value, parent) + : AbstractCounter(_player, _id, _name, false, _value, false, parent) { }