diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-05-09 22:59:16 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-05-09 22:59:16 +0300 |
commit | eb3cee0bc68ee576ed0eb429d22c6031f27def07 (patch) | |
tree | 8172ce45a24497942d489d350cc9cdb1340da97c /src/gui/setup_other.cpp | |
parent | aab80ddc8f56d6a383182ce5c241e9d94ca27bab (diff) | |
download | plus-eb3cee0bc68ee576ed0eb429d22c6031f27def07.tar.gz plus-eb3cee0bc68ee576ed0eb429d22c6031f27def07.tar.bz2 plus-eb3cee0bc68ee576ed0eb429d22c6031f27def07.tar.xz plus-eb3cee0bc68ee576ed0eb429d22c6031f27def07.zip |
Add option to allow automatically attack next target. (disabled by default)
Diffstat (limited to 'src/gui/setup_other.cpp')
-rw-r--r-- | src/gui/setup_other.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/setup_other.cpp b/src/gui/setup_other.cpp index aacc5d736..b88d82efa 100644 --- a/src/gui/setup_other.cpp +++ b/src/gui/setup_other.cpp @@ -101,6 +101,9 @@ Setup_Other::Setup_Other() new SetupItemCheckBox(_("Attack while moving"), "", "attackMoving", this, "attackMovingEvent"); + new SetupItemCheckBox(_("Attack next target"), "", + "attackNext", this, "attackNextEvent"); + new SetupItemCheckBox(_("Sync player move"), "", "syncPlayerMove", this, "syncPlayerMoveEvent"); |