forked from External/mage
New tooltips.
This commit is contained in:
parent
6ae4ac3c5e
commit
3123207b0d
15 changed files with 432 additions and 275 deletions
|
|
@ -169,16 +169,16 @@ public class Plugins implements MagePlugins {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void onAddCard(MagePermanent card) {
|
||||
public void onAddCard(MagePermanent card, int count) {
|
||||
if (this.cardPlugin != null) {
|
||||
this.cardPlugin.onAddCard(card);
|
||||
this.cardPlugin.onAddCard(card, count);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onRemoveCard(MagePermanent card) {
|
||||
public void onRemoveCard(MagePermanent card, int count) {
|
||||
if (this.cardPlugin != null) {
|
||||
this.cardPlugin.onRemoveCard(card);
|
||||
this.cardPlugin.onRemoveCard(card, count);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue