Make adding replay timers to new members optional

Not all expeditions with a replay timer lockout add it to newly
added members automatically

This adds the Expedition::SetReplayLockoutOnMemberJoin(bool) method
to the quest api so it can be disabled
This commit is contained in:
hg
2020-05-23 22:48:29 -04:00
parent 3bf7ea0d05
commit 11eacf25f0
10 changed files with 95 additions and 14 deletions
+1
View File
@@ -68,6 +68,7 @@ namespace ExpeditionDatabase
void InsertMembers(uint32_t expedition_id, const std::vector<ExpeditionMember>& members);
void UpdateLeaderID(uint32_t expedition_id, uint32_t leader_id);
void UpdateMemberRemoved(uint32_t expedition_id, uint32_t character_id);
void UpdateReplayLockoutOnJoin(uint32_t expedition_id, bool add_on_join);
};
#endif