remove unnecessary if

This commit is contained in:
SHIRAKATA Kentaro
2022-08-15 15:08:24 +09:00
committed by PatR
parent 2acdf4333a
commit 4e3fc4dcb0

View File

@@ -1050,8 +1050,7 @@ movemon_singlemon(struct monst *mtmp)
&& fightm(mtmp))
return FALSE; /* mon might have died */
}
if (dochugw(mtmp, TRUE)) /* otherwise just move the monster */
return FALSE;
dochugw(mtmp, TRUE); /* otherwise just move the monster */
return FALSE;
}