mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 23:58:02 -05:00
Updated some timestamps.
This commit is contained in:
parent
84363bc99f
commit
46ee12ff9d
3 changed files with 11 additions and 2 deletions
|
@ -16,7 +16,7 @@ table.table
|
|||
block tableBody
|
||||
for document in documents
|
||||
- var data = document.attributes;
|
||||
- if(data.slug == 'ace-of-coders' && new Date() < new Date(1441954800000))
|
||||
- if(data.slug == 'ace-of-coders' && new Date() < new Date(1441863900000))
|
||||
- continue;
|
||||
tr(class=document.getOwner() == me.id ? 'mine' : '')
|
||||
td
|
||||
|
|
|
@ -191,7 +191,7 @@ module.exports = class ClanDetailsView extends RootView
|
|||
name: utils.i18n(campaign.attributes, 'fullName') or utils.i18n(campaign.attributes, 'name')
|
||||
levels: []
|
||||
for levelID, level of campaign.get('levels')
|
||||
continue if level.slug is 'ace-of-coders' and new Date() < new Date(1441954800000)
|
||||
continue if level.slug is 'ace-of-coders' and new Date() < new Date(1441863900000)
|
||||
campaignLevelProgression.levels.push
|
||||
ID: levelID
|
||||
slug: level.slug
|
||||
|
|
|
@ -62,6 +62,13 @@ heroArenas = [
|
|||
image: '/file/db/level/550363b4ec31df9c691ab629/MAR26-Banner_Zero%20Sum.png'
|
||||
description: 'Unleash your coding creativity in both gold gathering and battle tactics in this alpine mirror match between red sorcerer and blue sorcerer.'
|
||||
}
|
||||
{
|
||||
name: 'Ace of Coders'
|
||||
difficulty: 3
|
||||
id: 'ace-of-coders'
|
||||
image: '/file/db/level/550363b4ec31df9c691ab629/MAR26-Banner_Zero%20Sum.png'
|
||||
description: 'Battle for control over the icy treasure chests as your gigantic warrior marshals his armies against his mirror-match nemesis.'
|
||||
}
|
||||
{
|
||||
name: 'Cavern Survival'
|
||||
difficulty: 1
|
||||
|
@ -92,6 +99,8 @@ heroArenas = [
|
|||
}
|
||||
]
|
||||
|
||||
heroArenas = _.reject heroArenas, id: 'ace-of-coders' if new Date() < new Date(1441863900000)
|
||||
|
||||
oldArenas = [
|
||||
{
|
||||
name: 'Criss-Cross'
|
||||
|
|
Loading…
Reference in a new issue