diff options
Diffstat (limited to 'src/game_data.cpp')
-rw-r--r-- | src/game_data.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game_data.cpp b/src/game_data.cpp index 94b9888..588ffc8 100644 --- a/src/game_data.cpp +++ b/src/game_data.cpp | |||
@@ -127,6 +127,10 @@ struct GameData { | |||
127 | exit_obj.type = EntranceType::kCrossroadsRoofAccess; | 127 | exit_obj.type = EntranceType::kCrossroadsRoofAccess; |
128 | } | 128 | } |
129 | 129 | ||
130 | if (option["static_painting"] && option["static_painting"].as<bool>()) { | ||
131 | exit_obj.type = EntranceType::kStaticPainting; | ||
132 | } | ||
133 | |||
130 | rooms_[from_room_id].exits.push_back(exit_obj); | 134 | rooms_[from_room_id].exits.push_back(exit_obj); |
131 | }; | 135 | }; |
132 | 136 | ||