From cd9c6b8fa74789030cbf8da5a2462bc17bbf2eeb Mon Sep 17 00:00:00 2001 From: Dave White Date: Sat, 17 Apr 2004 01:00:54 +0000 Subject: [PATCH] fixed bug where experience modifier wasn't properly serialized --- src/playturn.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/playturn.cpp b/src/playturn.cpp index 835bb3052bd..317bd81d5f6 100644 --- a/src/playturn.cpp +++ b/src/playturn.cpp @@ -1423,6 +1423,7 @@ void turn_info::write_game_snapshot(config& start) const start["objectives"] = (*level_)["objectives"]; start["next_scenario"] = (*level_)["next_scenario"]; start["music"] = (*level_)["music"]; + start["experience_modifier"] = (*level_)["experience_modifier"]; //write out the current state of the map start["map_data"] = map_.write();