Quote:
I know some EA's require the "m" for mini accounts.
So do I just change the code and recompile.
|
I just added an extern bool (IsMini) then added this routine to the init()
PHP Code:
if(IsMini){
for(int i=0;i<14;i++){
for(int y=0;y<3;y++){
pairs[i][y]=pairs[i][y]+"m";
}
}
}