mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-04 17:19:47 -04:00
Make level session selection random
Rather than weighted random on submission time
This commit is contained in:
parent
49c9c6bfc9
commit
281b6968d6
1 changed files with 2 additions and 2 deletions
|
@ -138,14 +138,14 @@ module.exports.getTwoGames = (req, res) ->
|
|||
selection = "team totalScore transpiledCode teamSpells levelID creatorName creator submitDate"
|
||||
LevelSession.count queryParams, (err, numberOfHumans) =>
|
||||
if err? then return errors.serverError(res, "Couldn't get the number of human games")
|
||||
humanSkipCount = selectRandomSkipIndex(numberOfHumans)
|
||||
humanSkipCount = Math.floor(Math.random() * numberOfHumans)
|
||||
ogreCountParams =
|
||||
"levelID": "greed"
|
||||
"submitted":true
|
||||
"team":"ogres"
|
||||
LevelSession.count ogreCountParams, (err, numberOfOgres) =>
|
||||
if err? then return errors.serverError(res, "Couldnt' get the number of ogre games")
|
||||
ogresSkipCount = selectRandomSkipIndex(numberOfOgres)
|
||||
ogresSkipCount = Math.floor(Math.random() * numberOfOgres)
|
||||
|
||||
query = LevelSession
|
||||
.aggregate()
|
||||
|
|
Loading…
Add table
Reference in a new issue