diff options
Diffstat (limited to 'src/monster2.cc')
-rw-r--r-- | src/monster2.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/monster2.cc b/src/monster2.cc index 17b5ab9a..9b82130e 100644 --- a/src/monster2.cc +++ b/src/monster2.cc @@ -431,6 +431,7 @@ static cptr funny_comments[MAX_COMMENT] = void delete_monster_idx(int i) { auto &k_info = game->edit_data.k_info; + auto &a_info = game->edit_data.a_info; /* Get location */ monster_type *m_ptr = &m_list[i]; @@ -1890,6 +1891,7 @@ void update_monsters(bool_ full) void monster_carry(monster_type *m_ptr, int m_idx, object_type *q_ptr) { auto &k_info = game->edit_data.k_info; + auto &a_info = game->edit_data.a_info; object_type *o_ptr; |