mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +00:00
- Added missing removeImprinted function.
This commit is contained in:
@@ -643,6 +643,10 @@ public class Card extends GameEntity implements Comparable<Card> {
|
|||||||
public final void addImprinted(final ArrayList<Card> list) {
|
public final void addImprinted(final ArrayList<Card> list) {
|
||||||
this.imprintedCards.addAll(list);
|
this.imprintedCards.addAll(list);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public final void removeImprinted(final Object o) {
|
||||||
|
this.imprintedCards.remove(o);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>
|
* <p>
|
||||||
|
|||||||
Reference in New Issue
Block a user