Browse Source

Merge branch '104-augment-message-fix' into 'staging'

Fix negative values in augment failure message

See merge request !53
tags/v0.1.2^2
Big Bad Waffle 7 years ago
parent
commit
00c86e9412
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