forked from github/server
- Neulinge starten mit O_COMPRESS
This commit is contained in:
parent
b4215da428
commit
603e0cd489
|
@ -102,7 +102,7 @@ addplayer(region *r, char *email, const struct race * frace, locale *loc)
|
||||||
f->locale = loc;
|
f->locale = loc;
|
||||||
set_ursprung(f, 0, r->x, r->y);
|
set_ursprung(f, 0, r->x, r->y);
|
||||||
|
|
||||||
f->options = Pow(O_REPORT) | Pow(O_ZUGVORLAGE) | Pow(O_SILBERPOOL) | Pow(O_COMPUTER);
|
f->options = Pow(O_REPORT) | Pow(O_ZUGVORLAGE) | Pow(O_SILBERPOOL) | Pow(O_COMPUTER) | Pow(O_COMPRESS);
|
||||||
|
|
||||||
f->no = unused_faction_id();
|
f->no = unused_faction_id();
|
||||||
register_faction_id(f->no);
|
register_faction_id(f->no);
|
||||||
|
|
|
@ -2737,6 +2737,11 @@ set_zip(void)
|
||||||
f->options = f->options | (1 << O_COMPRESS);
|
f->options = f->options | (1 << O_COMPRESS);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
f = findfaction(0);
|
||||||
|
f->options = f->options & !(1 << O_COMPRESS);
|
||||||
|
f->options = f->options | (1 << O_BZIP2);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue