forked from github/server
version 3.2
remove regatta plane, it crashes all of a sudden. why is there a use of init_order here? that is a future feature.
This commit is contained in:
parent
2246ce9d7a
commit
9e81de406b
|
@ -1,3 +1,3 @@
|
|||
#define VERSION_MAJOR 3
|
||||
#define VERSION_MINOR 1
|
||||
#define VERSION_BUILD 683
|
||||
#define VERSION_MINOR 2
|
||||
#define VERSION_BUILD 684
|
||||
|
|
|
@ -1571,7 +1571,9 @@ int readgame(const char *filename, int backup)
|
|||
}
|
||||
}
|
||||
a_read(&store, &pl->attribs, pl);
|
||||
addlist(&planes, pl);
|
||||
if (pl->id != 1094969858) { // Regatta
|
||||
addlist(&planes, pl);
|
||||
}
|
||||
}
|
||||
|
||||
/* Read factions */
|
||||
|
|
|
@ -3944,7 +3944,8 @@ void defaultorders(void)
|
|||
char lbuf[8192];
|
||||
order *new_order = 0;
|
||||
const char *s;
|
||||
init_order(ord);
|
||||
init_tokens(ord);
|
||||
skip_token();
|
||||
s = getstrtoken();
|
||||
if (s) {
|
||||
strcpy(lbuf, s);
|
||||
|
|
Loading…
Reference in New Issue