>= not >!

This commit is contained in:
SilicaAndPina 2021-06-28 17:30:29 +12:00
parent 6ff3d91135
commit 13de417f2d
2 changed files with 11 additions and 8 deletions

View file

@ -61,7 +61,7 @@ namespace HISP.Game
public static bool HasCompletedAllRiddles(User user)
{
if (Database.TotalRiddlesCompletedByPlayer(user.Id) > Riddles.Length)
if (Database.TotalRiddlesCompletedByPlayer(user.Id) >= Riddles.Length)
return true;
return false;
}