Erwan
- fix psp compilation, thanks to the people who reported the issue
This commit is contained in:
@@ -202,10 +202,10 @@ public:
|
|||||||
//counters
|
//counters
|
||||||
class AACounter: public ActivatedAbility{
|
class AACounter: public ActivatedAbility{
|
||||||
public:
|
public:
|
||||||
string name;
|
|
||||||
int nb;
|
int nb;
|
||||||
int power;
|
int power;
|
||||||
int toughness;
|
int toughness;
|
||||||
|
string name;
|
||||||
AACounter(int id, MTGCardInstance * source, MTGCardInstance * target, const char * _name, int power, int toughness, int nb, ManaCost * cost = NULL, int doTap = 0) : ActivatedAbility(id, source, cost, 0, doTap), nb(nb), power(power), toughness(toughness), name(_name) {
|
AACounter(int id, MTGCardInstance * source, MTGCardInstance * target, const char * _name, int power, int toughness, int nb, ManaCost * cost = NULL, int doTap = 0) : ActivatedAbility(id, source, cost, 0, doTap), nb(nb), power(power), toughness(toughness), name(_name) {
|
||||||
this->target = target;
|
this->target = target;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user