Clean up the previous revision.

This commit is contained in:
Markus Armbruster 2006-09-23 13:25:46 +00:00
parent 88bf471319
commit 7a2aad83cb
2 changed files with 4 additions and 3 deletions

View file

@ -155,7 +155,6 @@ march(void)
stopping |= lnd_check_mines(&land_list); stopping |= lnd_check_mines(&land_list);
break; break;
case 'r': case 'r':
player->argp[0] = "lradar";
radar(EF_LAND); radar(EF_LAND);
skip = 1; skip = 1;
player->btused++; player->btused++;

View file

@ -38,12 +38,14 @@
#include "optlist.h" #include "optlist.h"
#include "empobj.h" #include "empobj.h"
int rada(void) int
rada(void)
{ {
return radar(EF_SHIP); return radar(EF_SHIP);
} }
int lrad(void) int
lrad(void)
{ {
return radar(EF_LAND); return radar(EF_LAND);
} }