diff --git a/OpenSim/Tools/pCampBot/BotManager.cs b/OpenSim/Tools/pCampBot/BotManager.cs index 37dc0d9572..60e6ce3a69 100644 --- a/OpenSim/Tools/pCampBot/BotManager.cs +++ b/OpenSim/Tools/pCampBot/BotManager.cs @@ -302,7 +302,7 @@ namespace pCampBot { lock (m_bots) { - string lastName = string.Format("{0}_{1}", m_lastNameStem, i + m_fromBotNumber); + string lastName = string.Format("{0}{1}", m_lastNameStem, i + m_fromBotNumber); CreateBot( this, @@ -958,7 +958,7 @@ namespace pCampBot private string GenerateBotNameFromNumber(int botNumber) { - return string.Format("{0} {1}_{2}", m_firstName, m_lastNameStem, botNumber); + return string.Format("{0} {1}{2}", m_firstName, m_lastNameStem, botNumber); } internal void Grid_GridRegion(object o, GridRegionEventArgs args)