mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +00:00
- Fixed Auras displaying their names at the end of their descriptions.
This commit is contained in:
@@ -1696,7 +1696,7 @@ public class Card extends GameEntity implements Comparable<Card> {
|
||||
sb.insert(0, "\r\n");
|
||||
sb.insert(0, sAbility);
|
||||
}
|
||||
else if (!sAbility.endsWith(state.getName())) {
|
||||
else if (!sAbility.endsWith(state.getName() + "\r\n")) {
|
||||
sb.append(sAbility);
|
||||
sb.append("\r\n");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user