Replace && with & in blindness timeout check.

Caught by clang.
This commit is contained in:
Sean Hunt
2015-02-16 00:24:05 -05:00
committed by Pasi Kallinen
parent 01756b33fa
commit 07cf4e9657

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*/