Index: code/q3_ui/ui_splevel.c =================================================================== --- code/q3_ui/ui_splevel.c (revision 1134) +++ code/q3_ui/ui_splevel.c (working copy) @@ -198,7 +198,12 @@ *p++ = 0; } - botInfo = UI_GetBotInfoByName( bot ); + botInfo = UI_GetBotInfoByName( bot ); + if(!botInfo) + { + botInfo = UI_GetBotInfoByNumber( levelMenuInfo.numBots ); + } + if( botInfo ) { levelMenuInfo.botPics[levelMenuInfo.numBots] = PlayerIconHandle( Info_ValueForKey( botInfo, "model" ) ); Q_strncpyz( levelMenuInfo.botNames[levelMenuInfo.numBots], Info_ValueForKey( botInfo, "name" ), 10 ); Index: code/q3_ui/ui_startserver.c =================================================================== --- code/q3_ui/ui_startserver.c (revision 1134) +++ code/q3_ui/ui_startserver.c (working copy) @@ -1092,7 +1092,11 @@ *p++ = 0; } - botInfo = UI_GetBotInfoByName( bot ); + botInfo = UI_GetBotInfoByName( bot ); + if( !botInfo ) + { + botInfo = UI_GetBotInfoByNumber( count ); + } bot = Info_ValueForKey( botInfo, "name" ); Q_strncpyz( s_serveroptions.playerNameBuffers[count], bot, sizeof(s_serveroptions.playerNameBuffers[count]) );