minor corrections
aoe takes too long
This commit is contained in:
parent
c74eb2eb4e
commit
deef45eae2
2 changed files with 3 additions and 1 deletions
|
@ -34,6 +34,7 @@ namespace bot {
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
str = condstring.Substring((pair[0] == 0) ? 0 : _G.indexOfNth(condstring, ';', pair[0] + 1) + 1, _G.indexOfNth(condstring, ';', pair[1] + 2) + 1);
|
str = condstring.Substring((pair[0] == 0) ? 0 : _G.indexOfNth(condstring, ';', pair[0] + 1) + 1, _G.indexOfNth(condstring, ';', pair[1] + 2) + 1);
|
||||||
str = Int32.Parse(str.Substring(0, str.IndexOf(','))) - 1 + str.Substring(str.IndexOf(','));
|
str = Int32.Parse(str.Substring(0, str.IndexOf(','))) - 1 + str.Substring(str.IndexOf(','));
|
||||||
|
|
||||||
|
|
|
@ -96,7 +96,8 @@ namespace bot {
|
||||||
int fcount = 0;
|
int fcount = 0;
|
||||||
for(int i = 0; i < str.Length; i++) {
|
for(int i = 0; i < str.Length; i++) {
|
||||||
if(str[i] == c) fcount++;
|
if(str[i] == c) fcount++;
|
||||||
if(fcount == index) return i;
|
if(fcount == index)
|
||||||
|
return i;
|
||||||
}
|
}
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue