mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-12-01 03:16:56 -05:00
Unlocked all levels again until we can figure out the achievement timing problems.
This commit is contained in:
parent
e9222f34bd
commit
36615ae39f
1 changed files with 2 additions and 1 deletions
|
@ -68,7 +68,8 @@ module.exports = class WorldMapView extends RootView
|
||||||
for level, index in campaign.levels
|
for level, index in campaign.levels
|
||||||
level.x ?= 10 + 80 * Math.random()
|
level.x ?= 10 + 80 * Math.random()
|
||||||
level.y ?= 10 + 80 * Math.random()
|
level.y ?= 10 + 80 * Math.random()
|
||||||
level.locked = index > 0 and not me.earnedLevel level.original
|
#level.locked = index > 0 and not me.earnedLevel level.original
|
||||||
|
level.locked = false # Until we can solve the bug.
|
||||||
context.levelStatusMap = @levelStatusMap
|
context.levelStatusMap = @levelStatusMap
|
||||||
context.levelPlayCountMap = @levelPlayCountMap
|
context.levelPlayCountMap = @levelPlayCountMap
|
||||||
context.isIPadApp = application.isIPadApp
|
context.isIPadApp = application.isIPadApp
|
||||||
|
|
Loading…
Reference in a new issue