QTfrontend/team.cpp
changeset 3697 d5b30d6373fc
parent 3381 f8800c44b3de
child 3758 80007c41c35e
equal deleted inserted replaced
3695:c11abf387a7d 3697:d5b30d6373fc
    71     {
    71     {
    72         Hedgehogs[i].Name=strLst[i * 2 + 7];
    72         Hedgehogs[i].Name=strLst[i * 2 + 7];
    73         Hedgehogs[i].Hat=strLst[i * 2 + 8];
    73         Hedgehogs[i].Hat=strLst[i * 2 + 8];
    74 // Somehow claymore managed an empty hat.  Until we figure out how, this should avoid a repeat
    74 // Somehow claymore managed an empty hat.  Until we figure out how, this should avoid a repeat
    75 // Checking net teams is probably pointless, but can't hurt.
    75 // Checking net teams is probably pointless, but can't hurt.
    76         if (Hedgehogs[i].Hat.length() == 0) Hedgehogs[i].Hat = "NoHat"; 
    76         if (Hedgehogs[i].Hat.length() == 0) Hedgehogs[i].Hat = "NoHat";
    77     }
    77     }
    78     Rounds = 0;
    78     Rounds = 0;
    79     Wins = 0;
    79     Wins = 0;
    80 }
    80 }
    81 
    81