mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 21:42:07 -08:00
[ZNR] a few text fixes
This commit is contained in:
parent
16450f9952
commit
cda79866ad
4 changed files with 6 additions and 6 deletions
|
|
@ -61,11 +61,11 @@ public class HasSubtypesSourceEffect extends ContinuousEffectImpl {
|
|||
default:
|
||||
for (int i = 0; i < subtypes.size(); i++) {
|
||||
if (i == 0) {
|
||||
s += subtypes.get(0).getIndefiniteArticle() + " " + subtypes.get(0) + ", ";
|
||||
s += subtypes.get(i).getIndefiniteArticle() + " " + subtypes.get(i) + ", ";
|
||||
} else if (i == subtypes.size() - 1) {
|
||||
s += "and " + subtypes.get(0);
|
||||
s += "and " + subtypes.get(i);
|
||||
} else {
|
||||
s += subtypes.get(0) + ", ";
|
||||
s += subtypes.get(i) + ", ";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue