about summary refs log tree commit diff stats
path: root/src/game_data.cpp
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-03-11 17:49:13 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-03-11 17:49:13 -0400
commit009cfbee0c28bb9c80e305de4a9c430350d6dde6 (patch)
tree18f06b090d2fd749aa5c653ce28977a945a815e0 /src/game_data.cpp
parent8ad881fed6e388f7a254350532ce58552ef47a1d (diff)
downloadlingo-ap-tracker-009cfbee0c28bb9c80e305de4a9c430350d6dde6.tar.gz
lingo-ap-tracker-009cfbee0c28bb9c80e305de4a9c430350d6dde6.tar.bz2
lingo-ap-tracker-009cfbee0c28bb9c80e305de4a9c430350d6dde6.zip
Handled tilted subway items
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