Tweaked isRecalculable.

This commit is contained in:
Scott Erickson 2014-08-15 10:10:03 -07:00
parent ca83023591
commit 7db821309a

View file

@ -29,7 +29,7 @@ AchievementSchema.methods.getExpFunction = ->
parameters = @get('function')?.parameters or jsonschema.properties.function.default.parameters parameters = @get('function')?.parameters or jsonschema.properties.function.default.parameters
return utils.functionCreators[kind](parameters) if kind of utils.functionCreators return utils.functionCreators[kind](parameters) if kind of utils.functionCreators
AchievementSchema.methods.isRecalculable = -> @get('recalculable') is true AchievementSchema.methods.isRecalculable = -> @get('recalculable') isnt false
AchievementSchema.statics.jsonschema = jsonschema AchievementSchema.statics.jsonschema = jsonschema
AchievementSchema.statics.earnedAchievements = {} AchievementSchema.statics.earnedAchievements = {}