mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-03-22 10:55:19 -04:00
Fixed #2988.
This commit is contained in:
parent
dcfa65213e
commit
02676dc59f
2 changed files with 6 additions and 1 deletions
app
|
@ -527,6 +527,8 @@
|
|||
skill_docs:
|
||||
writable: "writable" # Hover over "attack" in Your Skills while playing a level to see most of this
|
||||
read_only: "read-only"
|
||||
action: "Action"
|
||||
spell: "Spell"
|
||||
action_name: "name"
|
||||
action_cooldown: "Takes"
|
||||
action_specific_cooldown: "Cooldown"
|
||||
|
|
|
@ -15,7 +15,10 @@ h4
|
|||
if cooldowns && (cooldowns.cooldown || cooldowns.specificCooldown)
|
||||
p
|
||||
span
|
||||
| #{cooldowns.type == 'spell' ? 'Spell' : 'Action'}
|
||||
if cooldowns.type == 'spell'
|
||||
span(data-i18n="skill_docs.spell") Spell
|
||||
else
|
||||
span(data-i18n="skill_docs.action") Action
|
||||
span.spl(data-i18n="skill_docs.action_name") name
|
||||
span.spr :
|
||||
code "#{cooldowns.name}"
|
||||
|
|
Loading…
Reference in a new issue