File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 88
99if ( args . Length > 0 && args [ 0 ] == "--version" )
1010{
11- Console . WriteLine ( "RLBotServer v5.beta.6.11 " ) ;
11+ Console . WriteLine ( "RLBotServer v5.beta.6.12 " ) ;
1212 Environment . Exit ( 0 ) ;
1313}
1414
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ List<PlayerConfigurationT> players
114114 player . AgentId ??= "psyonix/" + skill ; // Not that it really matters
115115
116116 // Apply Psyonix preset loadouts
117- if ( player . Name == null )
117+ if ( string . IsNullOrEmpty ( player . Name ) )
118118 {
119119 ( player . Name , var preset ) = PsyonixLoadouts . GetNext ( ( int ) player . Team ) ;
120120 string andPreset = player . Loadout == null ? " and preset" : "" ;
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ public class QuickChat
3939
4040 public void AddChat ( MatchCommT matchComm , string name , float gameTime )
4141 {
42- if ( matchComm . Display == null )
42+ if ( string . IsNullOrEmpty ( matchComm . Display ) )
4343 return ;
4444
4545 _chats . AddLast ( ( gameTime , name , matchComm ) ) ;
You can’t perform that action at this time.
0 commit comments