(map, unit_map, draw_map, player_coms[]):

Modify nmap command to allow mapping around a nuke.
Add new command nbmap for bmapping around a nuke.
Add a new mapping flag 'n' for adding nukes to a map.
Correct syntax description for pmap, pbmap, lmap and lbmap
in player_coms[].
This commit is contained in:
Ron Koenderink 2006-06-24 17:29:40 +00:00
parent 5091956480
commit 26a014ea04
14 changed files with 217 additions and 66 deletions

View file

@ -50,7 +50,8 @@ extern void border(struct range *, char *, char *);
#define MAP_SHIP bit(0)
#define MAP_LAND bit(1)
#define MAP_PLANE bit(2)
#define MAP_HIGH bit(3)
#define MAP_ALL MAP_SHIP | MAP_LAND | MAP_PLANE
#define MAP_NUKE bit(3)
#define MAP_HIGH bit(4)
#define MAP_ALL MAP_SHIP | MAP_LAND | MAP_PLANE | MAP_NUKE
#endif