Don't reduce mission op area when range shrinks
The mission command limits op area radius to the possible range. That's okay, as it doesn't actually restrict possible op areas. When the mission is executed, it was limited again. Don't do that; remove the limiting code from build_mission_list_type() and show_mission(). The removed limiting had no effect, except when the range shrunk. Then limiting reduced the op area more than necessary. For instance, consider an object O with initial range 3 on a mission around M with range 3: - - - y - - - - - z y - - - - z x y - - - O x x M - - - z x y - - - - z y - - - - - y - - - Initially, all sectors not marked - are in range and in the op area. If the range drops to two, sectors marked O, x and z are still in range of O. But only the x are still in range of M. The O and z got excluded. Range can currently shrink when plane range is reduced (range command), or a ship, plane or land unit somehow loses tech (deity intervention).
This commit is contained in:
parent
8d0e1af5b7
commit
439fa2eadc
3 changed files with 18 additions and 36 deletions
|
@ -484,7 +484,7 @@ extern int ground_interdict(coord, coord, natid, char *);
|
|||
extern int unit_interdict(coord, coord, natid, char *, int, int);
|
||||
extern int off_support(coord, coord, natid, natid);
|
||||
extern int def_support(coord, coord, natid, natid);
|
||||
extern int oprange(struct empobj *, int *);
|
||||
extern int oprange(struct empobj *);
|
||||
extern int cando(int, int);
|
||||
extern void show_mission(int, struct nstr_item *);
|
||||
extern int air_defense(coord, coord, natid, struct emp_qelem *,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue