make BB games deterministic for replays

This commit is contained in:
Martin Michelsen
2023-12-23 23:26:44 -08:00
parent 87440437fb
commit 84ed80365c
10 changed files with 22 additions and 23 deletions
+1 -1
View File
@@ -254,7 +254,7 @@ void Lobby::create_item_creator() {
void Lobby::load_maps() {
auto s = this->require_server_state();
this->map = make_shared<Map>(this->lobby_id);
this->map = make_shared<Map>(this->lobby_id, this->random_crypt);
if (this->quest) {
auto leader_c = this->clients.at(this->leader_id);