fix crash

wrong parenthesis
This commit is contained in:
Anthony Calosa
2016-08-04 00:36:49 +08:00
parent be731a99c0
commit 0a0f6cdce9

View File

@@ -1462,8 +1462,8 @@ int AACopier::resolve()
if (_target)
{
MTGCard* clone ;
if((_target->isToken || _target->isACopier) && _target->hasCopiedToken)
{
if(_target->isToken || (_target->isACopier && _target->hasCopiedToken))
{//fix crash when copying token
clone = _target;
tokencopied = true;
}