From 1f9b3ed28f72ab00993b739c2f391730f04a3d69 Mon Sep 17 00:00:00 2001 From: Zach H Date: Sat, 4 Jul 2015 18:52:50 -0400 Subject: [PATCH] minor fix --- cockatrice/src/window_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cockatrice/src/window_main.cpp b/cockatrice/src/window_main.cpp index 9e91af04..8515d64b 100644 --- a/cockatrice/src/window_main.cpp +++ b/cockatrice/src/window_main.cpp @@ -357,7 +357,7 @@ QString MainWindow::extractInvalidUsernameMessage(QString & in) ) + ""; } - out += "
  • " + tr("first character can %1 be a punctuation mark").arg((rules.at(5).toInt() == 0) ? "" : tr("NOT")) + "
  • "; + out += "
  • " + tr("first character can %1 be a punctuation mark").arg((rules.at(5).toInt() > 0) ? "" : tr("NOT")) + "
  • "; out += ""; } else