diff options
author | megamage <none@none> | 2009-06-09 19:55:15 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-06-09 19:55:15 -0500 |
commit | 853432b201c6ae5b14c9cae445bb254a4795b4e5 (patch) | |
tree | 8c90729c1965ea80196165233a17ecc13f1fc4ba /src/game/GridNotifiers.h | |
parent | 4167ca4f840941b949fd318e4158ecf3cc268647 (diff) |
*Fix a bug that creature ignore LOS in assistance case.
--HG--
branch : trunk
Diffstat (limited to 'src/game/GridNotifiers.h')
-rw-r--r-- | src/game/GridNotifiers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/GridNotifiers.h b/src/game/GridNotifiers.h index 667891c0e38..5418bd09b16 100644 --- a/src/game/GridNotifiers.h +++ b/src/game/GridNotifiers.h @@ -997,7 +997,7 @@ namespace Trinity } else { - if(!m_creature->canStartAttack(u)) + if(!m_creature->canStartAttack(u, false)) return false; } |