Only regenerate the area list once per ARUP packet

This commit is contained in:
scatterflower 2020-08-15 19:40:52 -05:00
parent ec1c95bdb3
commit 8b44d4ae95
2 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,6 @@ public:
if (arup_locks.size() > place) if (arup_locks.size() > place)
arup_locks[place] = value; arup_locks[place] = value;
} }
list_areas();
} }
void character_loading_finished(); void character_loading_finished();

View File

@ -676,6 +676,7 @@ void AOApplication::server_packet_received(AOPacket *p_packet)
w_courtroom->arup_modify(arup_type, n_element - 1, w_courtroom->arup_modify(arup_type, n_element - 1,
f_contents.at(n_element)); f_contents.at(n_element));
} }
w_courtroom->list_areas();
} }
} }
else if (header == "IL") { else if (header == "IL") {