You're not checking whether the game has started when depositing the NFT into the user's vault.
require(block.timestamp >= startTime, "Game not started yet");
is missing. Users should not be allowed to deposit NFTs into the vault before the game starts.
The user hasn't minted any NFTs before the game starts, so there's no point in allowing NFT deposits before the game begins.
vs code
add require(block.timestamp >= startTime, "Game not started yet");
In code.
The contest is live. Earn rewards by submitting a finding.
This is your time to appeal against judgements on your submissions.
Appeals are being carefully reviewed by our judges.