Skip to content

Commit

Permalink
Fix vote column alignment + fix support link
Browse files Browse the repository at this point in the history
  • Loading branch information
peterekepeter committed Sep 20, 2023
1 parent 6ed0dcc commit 50c98a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MVE2dev/Classes/MapVoteClientWindow.uc
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ function Created ()
lblStatusTitles5.SetText("Votes");
lblStatusTitles5.SetFont(0);
lblStatusTitles5.SetTextColor(TextColor);
lstMapStatus = MapStatusListBox(CreateControl(Class'MapStatusListBox',10.0,LowSectionStart + 12,550.0,84.0));
lstMapStatus = MapStatusListBox(CreateControl(Class'MapStatusListBox',10.0,LowSectionStart + 12, 640.0, 84.0));
lstMapStatus.bAcceptsFocus = False;
lstMapStatus.Items.Clear();
lstKickStatus = KickStatusListBox(CreateControl(Class'KickStatusListBox',10.0,231.0,MapListwidth * 2 + 10, -192.0 + ListHeight));
Expand Down
4 changes: 2 additions & 2 deletions MVE2dev/Classes/ServerInfoWindow.uc
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,11 @@ function ShowAboutPage()
local string Core, Dev, Dev2, Support;
local string SupportLink;

SupportLink = "https://ut99.org/viewtopic.php?p=140965";
SupportLink = "http://ut99.org/viewtopic.php?p=140965";
Core = "<html><body><center><br><br><h1><font color=\"FFFF00\">Map Vote Extended</font></h1><br><br><b>Core developement: BDB (Bruce Bickar)<br><br>";
Dev = "Enhancements by: (Deepu)<br><br>";
Dev2 = "Improvements by: (21)<br><br>";
Support = "Support: <a href=\""@SupportLink@"\">UT99 Forum</a></b></center></body></html>";
Support = "Support: <a href=\""$SupportLink$"\">UT99 Forum</a></b></center></body></html>";

SetMOTD(Core$Dev$Dev2$Support);
}
Expand Down

0 comments on commit 50c98a8

Please sign in to comment.