set init baka timer fastmode to a safer float.

This commit is contained in:
omegablast2002@yahoo.com
2013-02-21 22:59:59 +00:00
parent 9a52ae28a2
commit b4d4515e01

View File

@@ -1891,7 +1891,7 @@ MTGCardInstance * AIPlayerBaka::activateCombo()
void AIPlayerBaka::initTimer()
{
if (mFastTimerMode)
timer = 0; //0 or 1 is as fast as possible and will generate bad side effects in the game engine (phases getting skipped...), use wisely
timer = 0.07f; //0 or 1 is as fast as possible and will generate bad side effects in the game engine (phases getting skipped...), use wisely
else
timer = 0.1f;
}