forked from github/server
Fixing Merge conflict
This commit is contained in:
parent
6afd8ab586
commit
bdbffba68e
12
src/laws.c
12
src/laws.c
|
@ -4626,12 +4626,12 @@ void init_processor(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
p += 10; /* can't allow reserve before siege (weapons) */
|
p += 10; /* can't allow reserve before siege (weapons) */
|
||||||
if (get_param_int(global.parameters, "rules.reserve.twophase", 0)) {
|
add_proc_region(p, &enter_1, "Betreten (3. Versuch)"); /* to claim a castle after a victory and to be able to DESTROY it in the same turn */
|
||||||
add_proc_order(p, K_RESERVE, &reserve_self, 0, "Selbst_Reservieren");
|
if (get_param_int(global.parameters, "rules.reserve.twophase", 0)) {
|
||||||
p += 10;
|
add_proc_order(p, K_RESERVE, &reserve_self, 0, "RESERVE (self)");
|
||||||
}
|
p += 10;
|
||||||
add_proc_region(p, &enter_1, "Betreten (3. Versuch)"); /* to claim a castle after a victory and to be able to DESTROY it in the same turn */
|
}
|
||||||
add_proc_order(p, K_RESERVE, &reserve_cmd, 0, "Reservieren");
|
add_proc_order(p, K_RESERVE, &reserve_cmd, 0, "RESERVE (all)");
|
||||||
add_proc_order(p, K_CLAIM, &claim_cmd, 0, NULL);
|
add_proc_order(p, K_CLAIM, &claim_cmd, 0, NULL);
|
||||||
add_proc_unit(p, &follow_unit, "Folge auf Einheiten setzen");
|
add_proc_unit(p, &follow_unit, "Folge auf Einheiten setzen");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue