From ea53cb0dfa44f91aaa7d8104e00a942090607518 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Thu, 17 Aug 2017 22:17:36 +0100 Subject: [PATCH] temporary change pcampbot bots lastname convention, to test at osgrid --- OpenSim/Tools/pCampBot/BotManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)