Merge branch 'hotfix-minmax'

This commit is contained in:
Stefan Zermatten
2015-06-26 10:48:43 +02:00
2 changed files with 10 additions and 2 deletions

View File

@@ -226,8 +226,8 @@ var attributeBase = function(charId, statName){
var base = 0;
var add = 0;
var mul = 1;
var min = Math.NEGATIVE_INFINITY;
var max = Math.POSITIVE_INFINITY;
var min = Number.NEGATIVE_INFINITY;
var max = Number.POSITIVE_INFINITY;
Effects.find({
charId: charId,

View File

@@ -193,3 +193,11 @@ ChangeLogs.insert({
"Experience dialogs should update their edit-mode inputs properly now",
],
});
ChangeLogs.insert({
version: "0.6.2",
changes: [
"Fixed a regression which broke min and max effects",
],
});