mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +00:00
Update
This commit is contained in:
@@ -5461,15 +5461,13 @@ public class Card extends GameEntity implements Comparable<Card> {
|
||||
return hexproofKey;
|
||||
}
|
||||
public String getKeywordKey() {
|
||||
String sorted = "";
|
||||
List<String> ability = new ArrayList<>();
|
||||
for (final KeywordInterface inst : getKeywords()) {
|
||||
String kw = inst.getOriginal();
|
||||
ability.add(kw);
|
||||
}
|
||||
Collections.sort(ability);
|
||||
sorted = String.join(",", ability);
|
||||
return sorted;
|
||||
return String.join(",", ability);
|
||||
}
|
||||
public Zone getZone() {
|
||||
return currentZone;
|
||||
|
||||
Reference in New Issue
Block a user