From 7d918f0df60e38c2c069976e4f82b790b770b894 Mon Sep 17 00:00:00 2001 From: Bardur Arantsson Date: Sat, 8 Oct 2016 11:38:29 +0200 Subject: Remove unused tactic_info_type.to_disarm field --- src/tables.cc | 20 ++++++++++---------- src/tactic_info_type.hpp | 1 - 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; }; -- cgit v1.2.3