Merge branch 'NetHack-3.6.2'

This commit is contained in:
nhmall
2019-02-01 21:12:33 -05:00
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -152,7 +152,7 @@ stuck_in_wall()
y = u.uy + j;
if (!isok(x, y)
|| (IS_ROCK(levl[x][y].typ)
&& (levl[x][y].typ != SDOOR || levl[x][y].typ != SCORR))
&& (levl[x][y].typ != SDOOR && levl[x][y].typ != SCORR))
|| (blocked_boulder(i, j) && !throws_rocks(g.youmonst.data)))
++count;
}