From 4df663844488b03f1df77f8cb41df19f36a6a1d2 Mon Sep 17 00:00:00 2001 From: Olivier Gagnon Date: Fri, 22 Mar 2019 19:58:40 -0400 Subject: [PATCH] forgot to remove quote --- src/Bladeburner.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bladeburner.js b/src/Bladeburner.js index 4fda0e0f0..f4d875bdc 100644 --- a/src/Bladeburner.js +++ b/src/Bladeburner.js @@ -2763,7 +2763,7 @@ Bladeburner.prototype.updateBlackOpsUIElement = function(el, action) { })); el.appendChild(createElement("p", { display:"inline-block", - innerHTML:`Estimated Success Chance: "${formatNumber(estimatedSuccessChance*100, 1)}% ${action.isStealth?stealthIcon:''}${action.isKill?killIcon:''}\n` + + innerHTML:`Estimated Success Chance: ${formatNumber(estimatedSuccessChance*100, 1)}% ${action.isStealth?stealthIcon:''}${action.isKill?killIcon:''}\n` + "Time Required(s): " + formatNumber(actionTime, 0), })) }