diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-07-17 11:26:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-07-17 11:26:32 +0300 |
commit | 8edaf89adfcf0375f42cd2c4137d1eab425c2c62 (patch) | |
tree | 758ba22fc1b1f27c489bf49acb9e967579fe4465 /src/being/localplayer.cpp | |
parent | 66a46556ddeb7b8dbc061d325b55364839a86a26 (diff) | |
download | plus-8edaf89adfcf0375f42cd2c4137d1eab425c2c62.tar.gz plus-8edaf89adfcf0375f42cd2c4137d1eab425c2c62.tar.bz2 plus-8edaf89adfcf0375f42cd2c4137d1eab425c2c62.tar.xz plus-8edaf89adfcf0375f42cd2c4137d1eab425c2c62.zip |
Allow to set move to target distance from 1 to 9.
Diffstat (limited to 'src/being/localplayer.cpp')
-rw-r--r-- | src/being/localplayer.cpp | 31 |
1 files changed, 12 insertions, 19 deletions
diff --git a/src/being/localplayer.cpp b/src/being/localplayer.cpp index aed7ff767..8ca76526e 100644 --- a/src/being/localplayer.cpp +++ b/src/being/localplayer.cpp @@ -1138,28 +1138,12 @@ void LocalPlayer::moveToTarget(int dist) { switch (mMoveToTargetType) { - case 1: - dist = 1; - break; - case 2: - dist = 2; - break; - case 3: - dist = 3; - break; - case 4: - dist = 5; - break; - case 5: - dist = 7; - break; - case 6: - case 7: + case 10: dist = mAttackRange; if (dist == 1 && serverVersion < 1) dist = 2; break; - case 8: + case 11: dist = mAttackRange - 1; if (dist < 1) dist = 1; @@ -1167,6 +1151,7 @@ void LocalPlayer::moveToTarget(int dist) dist = 2; break; default: + dist = mMoveToTargetType; break; } } @@ -1333,7 +1318,7 @@ std::string LocalPlayer::getCrazyMoveTypeString() } } -static const unsigned moveToTargetTypeSize = 9; +static const unsigned moveToTargetTypeSize = 13; void LocalPlayer::changeMoveToTargetType() { @@ -1352,10 +1337,18 @@ static const char *const moveToTargetTypeStrings[] = // TRANSLATORS: move to target type in status bar N_("(3) moves to target in distance 3"), // TRANSLATORS: move to target type in status bar + N_("(4) moves to target in distance 4"), + // TRANSLATORS: move to target type in status bar N_("(5) moves to target in distance 5"), // TRANSLATORS: move to target type in status bar + N_("(6) moves to target in distance 6"), + // TRANSLATORS: move to target type in status bar N_("(7) moves to target in distance 7"), // TRANSLATORS: move to target type in status bar + N_("(8) moves to target in distance 8"), + // TRANSLATORS: move to target type in status bar + N_("(9) moves to target in distance 9"), + // TRANSLATORS: move to target type in status bar N_("(A) moves to target in attack range"), // TRANSLATORS: move to target type in status bar N_("(a) archer attack range"), |