Skip to content

Commit

Permalink
Allow gui_advplayerslist to display negative handicap (#4067)
Browse files Browse the repository at this point in the history
  • Loading branch information
kroIya authored Dec 26, 2024
1 parent 19a5ad0 commit ae92c85
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions luaui/Widgets/gui_advplayerslist.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2626,9 +2626,14 @@ function DrawName(name, team, posY, dark, playerID, desynced)
if desynced then
font2:SetTextColor(1,0.45,0.45,1)
font2:Print(Spring.I18N('ui.playersList.desynced'), m_name.posX + widgetPosX + 5 + xPadding + (font2:GetTextWidth(nameText)*14), posY + (5.7*playerScale) , 8, "o")
elseif player[playerID] and not player[playerID].dead and player[playerID].incomeMultiplier and player[playerID].incomeMultiplier > 1 then
font2:SetTextColor(0.5,1,0.5,1)
font2:Print('+'..math.floor((player[playerID].incomeMultiplier-1)*100)..'%', m_name.posX + widgetPosX + 5 + xPadding + (font2:GetTextWidth(nameText)*14), posY + (5.7*playerScale) , 8, "o")
elseif player[playerID] and not player[playerID].dead and player[playerID].incomeMultiplier and player[playerID].incomeMultiplier ~= 1 then
if player[playerID].incomeMultiplier > 1 then
font2:SetTextColor(0.5,1,0.5,1)
font2:Print('+'..math.floor((player[playerID].incomeMultiplier-1)*100)..'%', m_name.posX + widgetPosX + 5 + xPadding + (font2:GetTextWidth(nameText)*14), posY + (5.7*playerScale) , 8, "o")
else
font2:SetTextColor(1,0.5,0.5,1)
font2:Print(math.floor((player[playerID].incomeMultiplier-1)*100)..'%', m_name.posX + widgetPosX + 5 + xPadding + (font2:GetTextWidth(nameText)*14), posY + (5.7*playerScale) , 8, "o")
end
end
font2:End()

Expand Down

0 comments on commit ae92c85

Please sign in to comment.