mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
properly display logical connectors (#3072)
they should not get transalted as well
This commit is contained in:
parent
b6b4d7e4a0
commit
aba47719b2
2 changed files with 5 additions and 5 deletions
|
|
@ -4,13 +4,13 @@ const char *CardFilter::typeName(Type t)
|
|||
{
|
||||
switch (t) {
|
||||
case TypeAnd:
|
||||
return "and";
|
||||
return "AND";
|
||||
case TypeOr:
|
||||
return "or";
|
||||
return "OR";
|
||||
case TypeAndNot:
|
||||
return "and not";
|
||||
return "AND NOT";
|
||||
case TypeOrNot:
|
||||
return "or not";
|
||||
return "OR NOT";
|
||||
default:
|
||||
return "";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue