mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-23 13:15:53 +12:00
>= not >!
This commit is contained in:
parent
6ff3d91135
commit
13de417f2d
2 changed files with 11 additions and 8 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue