equal
deleted
inserted
replaced
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 } |