equal
deleted
inserted
replaced
60 for (int i = 0; i < TeamCount; i++) |
60 for (int i = 0; i < TeamCount; i++) |
61 { |
61 { |
62 SendIPC("eaddteam"); |
62 SendIPC("eaddteam"); |
63 LocalCFG(teams[i]); |
63 LocalCFG(teams[i]); |
64 QColor clr=m_teamsParams[teams[i]].teamColor; |
64 QColor clr=m_teamsParams[teams[i]].teamColor; |
65 SendIPC(QString("ecolor %1").arg(clr.rgb()).toAscii());//&0xFFFFFF |
65 SendIPC(QString("ecolor %1").arg(clr.rgb()&0xFFFFFF).toAscii()); |
66 for (int t = 0; t < m_teamsParams[teams[i]].numHedgehogs; t++) |
66 for (int t = 0; t < m_teamsParams[teams[i]].numHedgehogs; t++) |
67 SendIPC(QString("eadd hh%1 0").arg(t).toAscii()); |
67 SendIPC(QString("eadd hh%1 0").arg(t).toAscii()); |
68 } |
68 } |
69 } |
69 } |
70 |
70 |