Clean up more unreadable assignments within if conditionals
This commit is contained in:
parent
6459cfce7b
commit
a2ed975ec2
19 changed files with 92 additions and 81 deletions
|
@ -124,8 +124,8 @@ orde(void)
|
|||
orders = 0;
|
||||
scuttling = 0;
|
||||
/* Need location */
|
||||
if ((p = getstarg(player->argp[3], "Destination? ", buf)) == 0
|
||||
|| *p == 0)
|
||||
p = getstarg(player->argp[3], "Destination? ", buf);
|
||||
if (!p || !*p)
|
||||
return RET_SYN;
|
||||
if (!sarg_xy(p, &p0x, &p0y))
|
||||
return RET_SYN;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue