QTfrontend/team.cpp
changeset 3812 ce18fd3ff02d
parent 3767 2416a3f51c77
child 3844 697c855bd48d
equal deleted inserted replaced
3811:967363197f01 3812:ce18fd3ff02d
    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.length() == 0) Hedgehogs[i].Hat = "NoHat";
    77         if (Hedgehogs[i].Hat.isEmpty() == 0) 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 }