diff options
Diffstat (limited to 'src/being.cpp')
-rw-r--r-- | src/being.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/being.cpp b/src/being.cpp index 8fe61f14..30e32b7c 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -302,6 +302,9 @@ void Being::logic() frame = (get_elapsed_time(walk_time) * 4) / aspd; if (frame >= 4) { nextStep(); + if (autoTarget > 0 && this == player_node) { + attack(findNode(autoTarget)); + } } break; } |