Changeset 193
- Timestamp:
- 11/19/08 13:45:05 (17 years ago)
- Location:
- trunk/src/game
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/game/Creature.cpp
r186 r193 1530 1530 1531 1531 // Now check is target visible with LoS 1532 return u->IsWithinLOS(GetPositionX(),GetPositionY(),GetPositionZ()); 1532 //return u->IsWithinLOS(GetPositionX(),GetPositionY(),GetPositionZ()); 1533 return true; 1533 1534 } 1534 1535 -
trunk/src/game/Player.cpp
r190 r193 17285 17285 } 17286 17286 17287 // If use this server will be too laggy 17287 17288 // Now check is target visible with LoS 17288 return u->IsWithinLOS(GetPositionX(),GetPositionY(),GetPositionZ()); 17289 //return u->IsWithinLOS(GetPositionX(),GetPositionY(),GetPositionZ()); 17290 return true; 17289 17291 } 17290 17292