from retail

This commit is contained in:
Bunny67
2020-08-30 10:35:07 +03:00
parent a1bb00a773
commit 9d8f4960b7
3 changed files with 15 additions and 10 deletions
+1 -1
View File
@@ -320,7 +320,7 @@ local barPrototype = {
if (additionalBar.min and additionalBar.max) then
if (valueWidth ~= 0) then
startProgress = max( (additionalBar.min - valueStart) / valueWidth, 0);
startProgress = (additionalBar.min - valueStart) / valueWidth;
endProgress = (additionalBar.max - valueStart) / valueWidth;
if (self.additionalBarsInverse) then