Commit Graph

1 Commits

Author SHA1 Message Date
Brian Fertig df95c31400 `Fix game status assignment in level up logic`
The change corrects an assignment operator error in the `levelUp` method where `===` (equality comparison) was used instead of `=` (assignment). This bug would have prevented the game status from being properly set to false when reaching level 25, thus breaking the game end condition. The fix ensures that when the player reaches level 25, the game status is correctly updated and the game end sequence is triggered as intended.
2025-08-30 09:45:41 -06:00