mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
Merge branch 'master' of https://github.com/codecombat/codecombat
This commit is contained in:
commit
4e8c0b65e2
3 changed files with 2 additions and 3 deletions
|
@ -113,7 +113,6 @@ module.exports = class LevelBus extends Bus
|
|||
@changedSessionProperties.teamSpells = true
|
||||
@session.set({'teamSpells': @teamSpellMap})
|
||||
@saveSession()
|
||||
console.log spellTeam, me.team, e.spell.spellKey
|
||||
if spellTeam is me.team
|
||||
@onSpellChanged e # Save the new spell to the session, too.
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ h4.home
|
|||
|
||||
h4.title #{worldName}
|
||||
|
||||
button.btn.btn-xs.btn-inverse.banner#docs-button(title="Show level instructions", data-i18n="play_level.guide") Guide
|
||||
button.btn.btn-xs.btn-success.banner#docs-button(title="Show level instructions", data-i18n="play_level.guide") Guide
|
||||
|
||||
if ladderGame
|
||||
button.btn.btn-xs.btn-inverse.banner#multiplayer-button(title="Leaderboard", data-i18n="play_level.leaderboard") Leaderboard
|
||||
|
|
|
@ -270,7 +270,7 @@ module.exports = class HUDView extends View
|
|||
if prop is "rotation"
|
||||
return (val * 180 / Math.PI).toFixed(0) + "˚"
|
||||
if typeof val is 'number'
|
||||
if Math.round(val) == val then return val.toFixed(0) # int
|
||||
if Math.round(val) == val or prop is 'gold' then return val.toFixed(0) # int
|
||||
if -10 < val < 10 then return val.toFixed(2)
|
||||
if -100 < val < 100 then return val.toFixed(1)
|
||||
return val.toFixed(0)
|
||||
|
|
Loading…
Reference in a new issue