corrected the spelling of evolve. thanks kf1

This commit is contained in:
omegablast2002@yahoo.com
2012-12-27 21:07:20 +00:00
parent 123a6aa21f
commit 238cd124ae
2 changed files with 6 additions and 6 deletions
+4 -4
View File
@@ -5264,10 +5264,10 @@ public:
}; };
//Evole ability //Evole ability
class AEvoleAbility: public MTGAbility class AEvolveAbility: public MTGAbility
{ {
public: public:
AEvoleAbility(GameObserver* observer, int _id, MTGCardInstance * _source) : AEvolveAbility(GameObserver* observer, int _id, MTGCardInstance * _source) :
MTGAbility(observer, _id, _source) MTGAbility(observer, _id, _source)
{ {
} }
@@ -5284,9 +5284,9 @@ public:
return 1; return 1;
} }
AEvoleAbility * clone() const AEvolveAbility * clone() const
{ {
return NEW AEvoleAbility(*this); return NEW AEvolveAbility(*this);
} }
}; };
+2 -2
View File
@@ -2285,9 +2285,9 @@ MTGAbility * AbilityFactory::parseMagicLine(string s, int id, Spell * spell, MTG
} }
//evole //evole
if (s.find("evole") != string::npos) if (s.find("evolve") != string::npos)
{ {
return NEW AEvoleAbility(observer, id, card); return NEW AEvolveAbility(observer, id, card);
} }
//flanking //flanking