mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 02:38:02 +00:00
Fix formatting of two values
This commit is contained in:
@@ -543,7 +543,7 @@ public class AdvancedSearch {
|
|||||||
case 1:
|
case 1:
|
||||||
return formatValue(values.get(0));
|
return formatValue(values.get(0));
|
||||||
case 2:
|
case 2:
|
||||||
return formatValue(values.get(0)) + finalDelim + " " + formatValue(values.get(1));
|
return formatValue(values.get(0)) + finalDelim + formatValue(values.get(1));
|
||||||
default:
|
default:
|
||||||
int lastValueIdx = valueCount - 1;
|
int lastValueIdx = valueCount - 1;
|
||||||
String result = formatValue(values.get(0));
|
String result = formatValue(values.get(0));
|
||||||
|
|||||||
Reference in New Issue
Block a user