mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 19:28:01 +00:00
- Fixed copyCharacteristics turning all keywords into intrinsic keywords and modified types into printed types.
This commit is contained in:
@@ -47,7 +47,7 @@ public class Card extends GameEntity implements Comparable<Card> {
|
||||
private boolean isDoubleFaced = false;
|
||||
private boolean isFlip = false;
|
||||
|
||||
private CardCharacteristics getCharacteristics() {
|
||||
public CardCharacteristics getCharacteristics() {
|
||||
return characteristics[currentCharacteristic];
|
||||
}
|
||||
|
||||
|
||||
@@ -4351,9 +4351,9 @@ public class CardFactoryUtil {
|
||||
To.setBaseLoyalty(From.getBaseLoyalty());
|
||||
To.setBaseAttackString(From.getBaseAttackString());
|
||||
To.setBaseDefenseString(From.getBaseDefenseString());
|
||||
To.setIntrinsicKeyword(From.getKeyword());
|
||||
To.setIntrinsicKeyword(From.getIntrinsicKeyword());
|
||||
To.setName(From.getName());
|
||||
To.setType(From.getType());
|
||||
To.setType(From.getCharacteristics().getType());
|
||||
To.setText(From.getSpellText());
|
||||
To.setManaCost(From.getManaCost());
|
||||
To.setColor(From.getColor());
|
||||
|
||||
Reference in New Issue
Block a user