diff options
author | UbitUmarov | 2017-08-17 22:17:36 +0100 |
---|---|---|
committer | UbitUmarov | 2017-08-17 22:17:36 +0100 |
commit | ea53cb0dfa44f91aaa7d8104e00a942090607518 (patch) | |
tree | 1920cffc4d4ad06dafabd255d0fcad21dc8cf55e /OpenSim/Tools/pCampBot/BotManager.cs | |
parent | Merge branch 'master' into httptests (diff) | |
download | opensim-SC-ea53cb0dfa44f91aaa7d8104e00a942090607518.zip opensim-SC-ea53cb0dfa44f91aaa7d8104e00a942090607518.tar.gz opensim-SC-ea53cb0dfa44f91aaa7d8104e00a942090607518.tar.bz2 opensim-SC-ea53cb0dfa44f91aaa7d8104e00a942090607518.tar.xz |
temporary change pcampbot bots lastname convention, to test at osgrid
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Tools/pCampBot/BotManager.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Tools/pCampBot/BotManager.cs b/OpenSim/Tools/pCampBot/BotManager.cs index 37dc0d9..60e6ce3 100644 --- a/OpenSim/Tools/pCampBot/BotManager.cs +++ b/OpenSim/Tools/pCampBot/BotManager.cs | |||
@@ -302,7 +302,7 @@ namespace pCampBot | |||
302 | { | 302 | { |
303 | lock (m_bots) | 303 | lock (m_bots) |
304 | { | 304 | { |
305 | string lastName = string.Format("{0}_{1}", m_lastNameStem, i + m_fromBotNumber); | 305 | string lastName = string.Format("{0}{1}", m_lastNameStem, i + m_fromBotNumber); |
306 | 306 | ||
307 | CreateBot( | 307 | CreateBot( |
308 | this, | 308 | this, |
@@ -958,7 +958,7 @@ namespace pCampBot | |||
958 | 958 | ||
959 | private string GenerateBotNameFromNumber(int botNumber) | 959 | private string GenerateBotNameFromNumber(int botNumber) |
960 | { | 960 | { |
961 | return string.Format("{0} {1}_{2}", m_firstName, m_lastNameStem, botNumber); | 961 | return string.Format("{0} {1}{2}", m_firstName, m_lastNameStem, botNumber); |
962 | } | 962 | } |
963 | 963 | ||
964 | internal void Grid_GridRegion(object o, GridRegionEventArgs args) | 964 | internal void Grid_GridRegion(object o, GridRegionEventArgs args) |