Commit ec342d31 authored by fallenstardust's avatar fallenstardust

speed up MSG_CONFIRM_DECKTOP when there are more than 5 cards

parent 65c8b2e2
......@@ -2039,7 +2039,7 @@ int DuelClient::ClientAnalyze(char * msg, unsigned int len) {
else pcard->dRot = irr::core::vector3df(0, 0, 0);
pcard->is_moving = true;
pcard->aniFrame = 5;
mainGame->WaitFrameSignal(45);
mainGame->WaitFrameSignal(count > 5 ? 12 : 45);
mainGame->dField.MoveCard(pcard, 5);
mainGame->WaitFrameSignal(5);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment