QTfrontend/team.cpp
changeset 3844 697c855bd48d
parent 3812 ce18fd3ff02d
child 4976 088d40d8aba2
equal deleted inserted replaced
3843:50e75cb38c18 3844:697c855bd48d
    72     {
    72     {
    73         Hedgehogs[i].Name=strLst[i * 2 + 7];
    73         Hedgehogs[i].Name=strLst[i * 2 + 7];
    74         Hedgehogs[i].Hat=strLst[i * 2 + 8];
    74         Hedgehogs[i].Hat=strLst[i * 2 + 8];
    75 // Somehow claymore managed an empty hat.  Until we figure out how, this should avoid a repeat
    75 // Somehow claymore managed an empty hat.  Until we figure out how, this should avoid a repeat
    76 // Checking net teams is probably pointless, but can't hurt.
    76 // Checking net teams is probably pointless, but can't hurt.
    77         if (Hedgehogs[i].Hat.isEmpty() == 0) Hedgehogs[i].Hat = "NoHat";
    77         if (Hedgehogs[i].Hat.isEmpty()) Hedgehogs[i].Hat = "NoHat";
    78     }
    78     }
    79     Rounds = 0;
    79     Rounds = 0;
    80     Wins = 0;
    80     Wins = 0;
    81     CampaignProgress = 0;
    81     CampaignProgress = 0;
    82 }
    82 }