(tran_map): Set player->argp[0]. Required since bmap() was merged
into map() ca. 1995. Clear player->argp[2]. Required since map acquired its second argument in the early 90s. Fixes 'm' at transport's move_ground() prompt.
This commit is contained in:
parent
2ff3fe97a2
commit
18bbcb2c9e
1 changed files with 3 additions and 2 deletions
|
@ -283,12 +283,13 @@ tran_plane(void)
|
|||
* If more commands start doing this, then
|
||||
* rewrite map to do the right thing.
|
||||
*/
|
||||
/* I think this is no longer used, check subs/move.c:move_ground() */
|
||||
/*ARGSUSED*/
|
||||
static int
|
||||
tran_map(s_char *what, coord curx, coord cury, s_char *arg)
|
||||
{
|
||||
player->argp[0] = "map";
|
||||
player->argp[1] = arg;
|
||||
player->condarg = 0;
|
||||
player->argp[2] = NULL;
|
||||
player->condarg = NULL;
|
||||
return map();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue