temporary change pcampbot bots lastname convention, to test at osgrid
parent
c54cd4d808
commit
ea53cb0dfa
|
@ -302,7 +302,7 @@ namespace pCampBot
|
||||||
{
|
{
|
||||||
lock (m_bots)
|
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(
|
CreateBot(
|
||||||
this,
|
this,
|
||||||
|
@ -958,7 +958,7 @@ namespace pCampBot
|
||||||
|
|
||||||
private string GenerateBotNameFromNumber(int botNumber)
|
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)
|
internal void Grid_GridRegion(object o, GridRegionEventArgs args)
|
||||||
|
|
Loading…
Reference in New Issue