fixed a return praecox

git [02-10-18 - 19:22]
fixed a return praecox
Filename
IIfA/CharBagSpaceTooltip.lua
diff --git a/IIfA/CharBagSpaceTooltip.lua b/IIfA/CharBagSpaceTooltip.lua
index fb57591..a44dc1a 100644
--- a/IIfA/CharBagSpaceTooltip.lua
+++ b/IIfA/CharBagSpaceTooltip.lua
@@ -51,7 +51,7 @@ function CharBagFrame:ComputeColorAndText(spaceCurr, spaceMax)
 	local usedBagPercent = tonumber(spaceCurr) * 100 / tonumber(spaceMax)
 	local cs = ""
 	if spaceCurr == spaceMax then
-		return ColorStart(self.ColorFull)
+		cs = ColorStart(self.ColorFull)
 	else
 		if usedBagPercent >= self.parent.BagSpaceAlert.threshold then
 			cs = ColorStart(self.ColorAlert)