Merge pull request #1560 from lolbot-iichan/dev-fix-multi-team-ant-legs

ENGINE: Fix operator < for COldModelManager::FileInfo
fix-squashed-planets
Tomasz Kapuściński 2023-04-08 19:46:20 +02:00 committed by GitHub
commit cbfcbae7ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -114,6 +114,8 @@ private:
if (variant < other.variant) if (variant < other.variant)
return true; return true;
if (variant > other.variant)
return false;
return !mirrored && mirrored != other.mirrored; return !mirrored && mirrored != other.mirrored;
} }