(ichrstr): Rename member i_vtype to i_uid.

(ichr_ca): Rename selector vtype to uid.
This commit is contained in:
Markus Armbruster 2006-02-20 05:35:58 +00:00
parent 96a1e8277a
commit 783b00bbad
24 changed files with 59 additions and 59 deletions

View file

@ -65,9 +65,9 @@ shoo(void)
char buf[1024];
ip = whatitem(player->argp[1], "Shoot what <civ or uw> ");
if (ip == 0 || (ip->i_vtype != I_CIVIL && ip->i_vtype != I_UW))
if (ip == 0 || (ip->i_uid != I_CIVIL && ip->i_uid != I_UW))
return RET_SYN;
item = ip->i_vtype;
item = ip->i_uid;
if (!snxtsct(&nstr, player->argp[2]))
return RET_SYN;
sprintf(prompt, "number of %s to shoot? ", ip->i_name);