From 67c710268764556f764ea4485f8c263ade0cd97e Mon Sep 17 00:00:00 2001 From: Vittorio Alfieri <53129080+Vitty85@users.noreply.github.com> Date: Thu, 11 Jun 2020 00:10:41 +0200 Subject: [PATCH] Fix !share!types! keyword --- projects/mtg/src/TargetChooser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/mtg/src/TargetChooser.cpp b/projects/mtg/src/TargetChooser.cpp index 6740f39c3..5d380f540 100644 --- a/projects/mtg/src/TargetChooser.cpp +++ b/projects/mtg/src/TargetChooser.cpp @@ -772,7 +772,7 @@ TargetChooser * TargetChooserFactory::createTargetChooser(string s, MTGCardInsta if (!cd->types.size()){ int i = rand() % 10000 + 1; ostringstream subt; - subt << card->getName() << "_DummyType_" << i; + subt << card->getName() << "_DummyType_" << i; cd->setSubtype(subt.str()); // Fix to avoid type vector size is 0 causing the always true match issue. } cd->mode = CardDescriptor::CD_OR;