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