about summary refs log tree commit diff stats
path: root/src/game_data.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game_data.cpp')
-rw-r--r--src/game_data.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game_data.cpp b/src/game_data.cpp index 8ccc0da..a4a441d 100644 --- a/src/game_data.cpp +++ b/src/game_data.cpp
@@ -828,6 +828,10 @@ struct GameData {
828 subway_item.special = subway_it["special"].as<std::string>(); 828 subway_item.special = subway_it["special"].as<std::string>();
829 } 829 }
830 830
831 if (subway_it["tilted"]) {
832 subway_item.tilted = subway_it["tilted"].as<bool>();
833 }
834
831 subway_items_.push_back(subway_item); 835 subway_items_.push_back(subway_item);
832 } 836 }
833 837