summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2016-10-08 11:38:29 +0200
committerBardur Arantsson <bardur@scientician.net>2016-10-08 11:38:29 +0200
commit7d918f0df60e38c2c069976e4f82b790b770b894 (patch)
tree755160505e330e020787366ab0f877e6f576fdf4
parent48c827fcfec1b0bce6885ff7b431765528be638a (diff)
Remove unused tactic_info_type.to_disarm field
-rw-r--r--src/tables.cc20
-rw-r--r--src/tactic_info_type.hpp1
2 files changed, 10 insertions, 11 deletions
diff --git a/src/tables.cc b/src/tables.cc
index 4d6e87a3..e2eb5ff1 100644
--- a/src/tables.cc
+++ b/src/tables.cc
@@ -2169,16 +2169,16 @@ deity_type deity_info[MAX_GODS] =
/* as far as I know. */
tactic_info_type tactic_info[9] =
{
- /* hit dam ac stl dis sav */
- { -10, -10, +15, +3, +15, +14, "coward" },
- { -8, -8, +10, +2, +9, +9, "meek" },
- { -4, -4, +5, +1, +5, +5, "wary" },
- { -2, -2, +2, +1, +2, +2, "careful" },
- { 0, 0, 0, 0, 0, 0, "normal" },
- { 2, 2, -2, -1, -2, -3, "confident" },
- { 4, 4, -5, -2, -5, -7, "aggressive" },
- { 6, 6, -10, -3, -11, -12, "furious" },
- { 8, 12, -25, -5, -18, -18, "berserker" }
+ /* hit dam ac stl sav */
+ { -10, -10, +15, +3, +14, "coward" },
+ { -8, -8, +10, +2, +9, "meek" },
+ { -4, -4, +5, +1, +5, "wary" },
+ { -2, -2, +2, +1, +2, "careful" },
+ { 0, 0, 0, 0, 0, "normal" },
+ { 2, 2, -2, -1, -3, "confident" },
+ { 4, 4, -5, -2, -7, "aggressive" },
+ { 6, 6, -10, -3, -12, "furious" },
+ { 8, 12, -25, -5, -18, "berserker" }
};
/*
diff --git a/src/tactic_info_type.hpp b/src/tactic_info_type.hpp
index da94767d..4cb330f4 100644
--- a/src/tactic_info_type.hpp
+++ b/src/tactic_info_type.hpp
@@ -11,7 +11,6 @@ struct tactic_info_type
s16b to_dam;
s16b to_ac;
s16b to_stealth;
- s16b to_disarm;
s16b to_saving;
cptr name;
};