Sending native tokens can skew the validation of the withdrawFees() function
The withdrawFees() function has the following validations.
require(address(this).balance == uint256(totalFees), "PuppyRaffle: There are currently players active!");
Since address(this).balance can be changed by forcing ETH to be sent, this validation can always fail.
This makes withdrawFees() virtually impossible to invoke.
fee will not be able to collect.
Manual
Stop referring to address(this).balance. Prepare another variable to manage whether the game is active or not.
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.