05f2b19
Remove unused SLabelProperties Props
variable - Robyt3
af67130
Use nullptr
for unused UI rect splitting parameters - Robyt3
f60dd0d
Fix name of static variable s_LastLoadRender
- Robyt3
fe359e2
Combine Margin
function calls - Robyt3
13ed0e3
Use const
when possible - Robyt3
ac820ce
Merge #6607 - bors[bot]is:issue sort:updated-desc is:open -label:needs-discussion -label:to-reproduce -label:incomplete -label:"3rd party" -label:meta-discussion -label:question
(edited)cl_friends_ignore_clan
to ignore the clanpublic class GenFriends {
public static void main(String args[]) {
if(args.length != 2) {
return;
}
int min = Integer.parseInt(args[0]);
int max = Integer.parseInt(args[1]);
for(int i = min; i <= max; i++) {
System.out.println("add_friend \"friend" + i + "\" \"clan" + i + "\"");
}
}
}
FriendlistOnUpdate
function is just empty on upstream if(Player->m_Score < TTime || !Player->m_HasFinishScore)
if(Player->m_Score == -1 || Player->m_Score < TTime)
{
Player->m_Score = TTime;
Player->m_HasFinishScore = true;
}
int TTime = 0 - (int)Time;
if(Player->m_Score < TTime || !Player->m_HasFinishScore)
if(Player->m_Score == -1 || Player->m_Score < TTime)
{
Player->m_Score = TTime;
Player->m_HasFinishScore = true;
}
CFGFLAG_SERVER
for the commands as it resulted in a conflict with the registered unsolo
and undeep
super team console commands, not entirely sure if that's okay
/help unsolo
and /help undeep
will print the help text of the super team command...