bnstooltips 1.18.15 → 1.18.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.es.js +2 -2
- package/build/index.es.js.map +1 -1
- package/build/index.js +2 -2
- package/build/index.js.map +1 -1
- package/package.json +2 -2
package/build/index.es.js
CHANGED
|
@@ -8820,13 +8820,13 @@ function AddSkillMastery(subInfoGroups, masteryPoints, masteryValue, masteryIsPe
|
|
|
8820
8820
|
React.createElement("div", null,
|
|
8821
8821
|
"Damage increase:\u00A0",
|
|
8822
8822
|
React.createElement("span", { className: "tooltipArg" },
|
|
8823
|
-
masteryValue,
|
|
8823
|
+
masteryValue.toString().replace(',', '.'),
|
|
8824
8824
|
"%"))
|
|
8825
8825
|
:
|
|
8826
8826
|
React.createElement("div", null,
|
|
8827
8827
|
"Cooldown reduction:\u00A0",
|
|
8828
8828
|
React.createElement("span", { className: "tooltipArg" },
|
|
8829
|
-
masteryValue,
|
|
8829
|
+
masteryValue.toString().replace(',', '.'),
|
|
8830
8830
|
" sec."))),
|
|
8831
8831
|
],
|
|
8832
8832
|
});
|