Browse Source

Fix negative values in augment failure message

tags/v0.1.2^2
Paul Holden 7 years ago
parent
commit
4b0f5fd5f7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/client/ui/templates/smithing/smithing.js

+ 1
- 1
src/client/ui/templates/smithing/smithing.js View File

@@ -91,7 +91,7 @@ define([
}

result.addStatMsgs.forEach(function(a) {
msg.msg += '<br /> ' + ((a.value > 0) ? '+' : '-') + a.value + ' ' + statTranslations.translate(a.stat);
msg.msg += '<br /> ' + ((a.value > 0) ? '+' : '') + a.value + ' ' + statTranslations.translate(a.stat);
});

events.emit('onGetAnnouncement', msg);


Loading…
Cancel
Save