1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-04-23 12:08:45 +02:00

And another one. I'm sloppy today :(

This commit is contained in:
Michał W. Urbańczyk 2013-09-29 21:31:14 +00:00
parent 149ff4df14
commit dca1f709a9

View File

@ -2295,9 +2295,9 @@ boost::optional<int> CBattleInfoCallback::battleIsFinished() const
if(!hasStack[0] && !hasStack[1]) if(!hasStack[0] && !hasStack[1])
return 2; return 2;
if(!hasStack[1]) if(!hasStack[1])
return 1;
if(!hasStack[0])
return 0; return 0;
if(!hasStack[0])
return 1;
return boost::none; return boost::none;
} }