1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-26 14:38:30 +02:00

Merge pull request #147 from InfoTeddy/general-bug-fixes-5

Make hardest room "Dimension VVVVVV" if it has no room name
This commit is contained in:
Terry Cavanagh 2020-02-06 16:37:37 +01:00 committed by GitHub
commit 4e378b6057
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4171,6 +4171,10 @@ void Game::gethardestroom( mapclass& map )
if (roomx == 50 && roomy == 53) hardestroom =map.specialnames[6];
if (roomx == 50 && roomy == 54) hardestroom = map.specialnames[7];
}
else if (map.roomname == "")
{
hardestroom = "Dimension VVVVVV";
}
}
}