remove unnecessary if

This commit is contained in:
SHIRAKATA Kentaro
2022-08-19 06:22:01 -07:00
committed by PatR
parent 2acdf4333a
commit 4e3fc4dcb0
+1 -2
View File
@@ -1050,8 +1050,7 @@ movemon_singlemon(struct monst *mtmp)
&& fightm(mtmp)) && fightm(mtmp))
return FALSE; /* mon might have died */ return FALSE; /* mon might have died */
} }
if (dochugw(mtmp, TRUE)) /* otherwise just move the monster */ dochugw(mtmp, TRUE); /* otherwise just move the monster */
return FALSE;
return FALSE; return FALSE;
} }