Added support for WildCat
This commit is contained in:
parent
14d1ba951a
commit
3b37290f9c
@ -73,6 +73,21 @@ void gareafile::ReadAreasBBS(char* tag) {
|
|||||||
adjustpath(path+1);
|
adjustpath(path+1);
|
||||||
aa.setpath(path+1);
|
aa.setpath(path+1);
|
||||||
}
|
}
|
||||||
|
else if((path[0] == 'P') and (path[1] == ' ')) {
|
||||||
|
aa.basetype = "WILDCAT";
|
||||||
|
adjustpath(path+2);
|
||||||
|
aa.setpath(path+2);
|
||||||
|
}
|
||||||
|
else if(strnieql(path, "BBS ", 4)) {
|
||||||
|
aa.basetype = "WILDCAT";
|
||||||
|
adjustpath(path+4);
|
||||||
|
aa.setpath(path+4);
|
||||||
|
}
|
||||||
|
else if(*path == '!') {
|
||||||
|
aa.basetype = "JAM";
|
||||||
|
adjustpath(path+1);
|
||||||
|
aa.setpath(path+1);
|
||||||
|
}
|
||||||
else {
|
else {
|
||||||
aa.basetype = fidomsgtype;
|
aa.basetype = fidomsgtype;
|
||||||
adjustpath(path);
|
adjustpath(path);
|
||||||
|
Reference in New Issue
Block a user