mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
- Fixed generation of Storm description (fixes e.g. Astral Steel and friends crashing).
This commit is contained in:
@@ -1887,9 +1887,13 @@ public class Card extends GameEntity implements Comparable<Card> {
|
||||
.append(".\r\n");
|
||||
} else if (keyword.startsWith("Storm")) {
|
||||
if (sb.toString().contains("Target") || sb.toString().contains("target")) {
|
||||
if (sb.toString().contains("Storm (When you cast this spell, copy it for each spell cast before it this turn.")) {
|
||||
sb.insert(
|
||||
sb.indexOf("Storm (When you cast this spell, copy it for each spell cast before it this turn.") + 81,
|
||||
" You may choose new targets for the copies.");
|
||||
} else {
|
||||
sb.append("Storm (When you cast this spell, copy it for each spell cast before it this turn. You may choose new targets for the copies.");
|
||||
}
|
||||
}
|
||||
} else if (keyword.startsWith("Replicate") && !sb.toString().contains("you paid its replicate cost.")) {
|
||||
if (sb.toString().endsWith("\r\n\r\n")) {
|
||||
|
||||
Reference in New Issue
Block a user