diff options
Diffstat (limited to 'src/game.cpp')
-rw-r--r-- | src/game.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/game.cpp b/src/game.cpp index 181b7d6f..9e9b0da9 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -433,12 +433,12 @@ void do_input() if (target->action != MONSTER_DEAD && player_node->action==STAND) { - if (keys[SDLK_LSHIFT]) - { - autoTarget = target; - } attack(target); - + // Autotarget by default with mouse + //if (keys[SDLK_LSHIFT]) + //{ + autoTarget = target; + //} } } // Player default: trade |