Replace && with & in blindness timeout check.

Caught by clang.
This commit is contained in:
Sean Hunt
2015-02-16 00:24:05 -05:00
parent 862d32c2ec
commit 7e93cadc1c

View File

@@ -1052,7 +1052,7 @@ region_safety()
pline_The("gas cloud has dissipated.");
}
/* maybe cure blindness too */
if ((Blinded && TIMEOUT) == 1L) make_blinded(0L, TRUE);
if ((Blinded & TIMEOUT) == 1L) make_blinded(0L, TRUE);
}
/*region.c*/