mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2025-12-20 22:32:47 -08:00
Compare commits
1 Commits
2025-09-15
...
fix_serva
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7daa9a0ca9 |
@@ -895,9 +895,12 @@ Server_Player::cmdConcede(const Command_Concede & /*cmd*/, ResponseContainer & /
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
const auto ®exResult = ownerRegex.match(card->getAnnotation());
|
const QString cardAnnotation = card->getAnnotation();
|
||||||
if (!regexResult.hasMatch()) {
|
if (!cardAnnotation.isEmpty()) {
|
||||||
continue;
|
const auto ®exResult = ownerRegex.match(cardAnnotation);
|
||||||
|
if (!regexResult.hasMatch()) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
CardToMove cardToMove;
|
CardToMove cardToMove;
|
||||||
|
|||||||
Reference in New Issue
Block a user