You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The totalDifficultFaced value is being incremented twice resulting in an invalid value that breaks the score formula.
check this player that has only submitted lvl 30 with 8 difficulty and has totalDifficultyFaced 16
ps: there are a couple of other players with totalDifficultyFaced values really high due to this issue.
Ex :
{
"player": "0xAa73C7422F0B0478fb9C5648d732ab33C5a4B330",
"averageTimeTakenToCompleteALevel": 11007,
"totalNumberOfLevelsCompleted": 30,
"totalDifficultyFaced": 288, // max value should be ~157"alias": "",
"score": 93.47516615300752
}
I think this issue is due to the call to crawlForFreshEntriesAndUpdateNetworkBoard function in the file root causing this the function being called twice: first when the file is imported, and again when it is called in the trigger function
opened #20 to illustrate the issue, I might be wrong, just take a quick look at the code
The text was updated successfully, but these errors were encountered:
Hi @NithinJ-17, welcome to the open-source community! I'm glad to have you here.
Thanks for your interest in this issue. I’ve already proposed a solution in PR #20, but please feel free to take a look at it. I didn’t put a lot of effort into it, so there might be a better way to solve it.
Just a heads up, I’m not an official member of this repository; I just highlighted this issue.
Maybe @GianfrancoBazzani can provide you with better guidance.
The
totalDifficultFaced
value is being incremented twice resulting in an invalid value that breaks the score formula.check this player that has only submitted lvl 30 with 8 difficulty and has
totalDifficultyFaced
16ps: there are a couple of other players with
totalDifficultyFaced
values really high due to this issue.Ex :
I think this issue is due to the call to
crawlForFreshEntriesAndUpdateNetworkBoard
function in the file root causing this the function being called twice: first when the file is imported, and again when it is called in the trigger functionopened #20 to illustrate the issue, I might be wrong, just take a quick look at the code
The text was updated successfully, but these errors were encountered: