diff --git a/projects/mtg/bin/daily_build/template.exe b/projects/mtg/bin/daily_build/template.exe index 7c85c9395..1d4b471b8 100644 Binary files a/projects/mtg/bin/daily_build/template.exe and b/projects/mtg/bin/daily_build/template.exe differ diff --git a/projects/mtg/src/Damage.cpp b/projects/mtg/src/Damage.cpp index a24e02782..31f08e68c 100644 --- a/projects/mtg/src/Damage.cpp +++ b/projects/mtg/src/Damage.cpp @@ -28,7 +28,6 @@ void Damage::init(MTGCardInstance * _source, Damageable * _target, int _damage){ int Damage::resolve(){ if (damage <0) damage = 0; //Negative damages cannot happen state = RESOLVED_OK; - cout << "RESOLVE " << damage << " >> " << _target->name << endl; GameObserver * g = GameObserver::GetInstance(); WEvent * e = NEW WEventDamage(this);