mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-02-17 08:50:58 -05:00
Fixed typo in contract emails.
This commit is contained in:
parent
59b433d863
commit
0635d1dccf
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ module.exports.setup = (app) ->
|
|||
return res.end()
|
||||
|
||||
createMailContext = (sender, message, user, recipientID, subject, done) ->
|
||||
level = if user?.get('points') > 0 then Math.floor(5 * Math.log((1 / 100) * (xp + 100))) + 1 else 0
|
||||
level = if user?.get('points') > 0 then Math.floor(5 * Math.log((1 / 100) * (user.get('points') + 100))) + 1 else 0
|
||||
premium = user?.isPremium()
|
||||
content = """
|
||||
#{message}
|
||||
|
|
Loading…
Reference in a new issue