Update of /cvsroot/wpdev/wolfpack
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4603
Modified Files:
coord.cpp
Log Message:
Removed line of sight debugging.
Index: coord.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/coord.cpp,v
retrieving revision 1.62
retrieving revision 1.63
diff -C2 -d -r1.62 -r1.63
*** coord.cpp 16 Sep 2004 16:43:27 -0000 1.62
--- coord.cpp 16 Sep 2004 18:46:33 -0000 1.63
***************
*** 261,267 ****
// Play an effect for the tile
if (blocked) {
! point.effect(0x181D, 10, 50, 0x21);
return false;
! } else {
point.effect(0x181D, 10, 50, 0x44);
}
--- 261,269 ----
// Play an effect for the tile
if (blocked) {
! if (debug) {
! point.effect(0x181D, 10, 50, 0x21);
! }
return false;
! } else if (debug) {
point.effect(0x181D, 10, 50, 0x44);
}
|