1
0
forked from 0ad/0ad

Fixes cost spacing in wall construction tooltips, refs #1675

This was SVN commit r13042.
This commit is contained in:
historic_bruno 2013-01-04 00:52:21 +00:00
parent be63de5a7c
commit 8e382d98a2

View File

@ -329,7 +329,7 @@ function getWallPieceTooltip(wallTypes)
var resourceMin = Math.min.apply(Math, resourceCount[resource]);
var resourceMax = Math.max.apply(Math, resourceCount[resource]);
out.push(getCostComponentDisplayName(resource) + resourceMin + " to " + getCostComponentDisplayName(resource) + resourceMax);
out.push(getCostComponentDisplayName(resource) + " " + resourceMin + " to " + getCostComponentDisplayName(resource) + " " + resourceMax);
}
}
else