From 5bd44a6d3f1eb162aa04fc3cf38d9748b4062c2d Mon Sep 17 00:00:00 2001 From: duncanspumpkin Date: Tue, 7 Mar 2017 21:13:45 +0000 Subject: [PATCH] Fix #5265. Queue TV's now correctly detected. Due to a mistake when implementing only ghost queue TV's were used for increasing peep happiness --- src/openrct2/peep/peep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2/peep/peep.c b/src/openrct2/peep/peep.c index 9d8775a930..8767621b20 100644 --- a/src/openrct2/peep/peep.c +++ b/src/openrct2/peep/peep.c @@ -1144,7 +1144,7 @@ static void sub_68F41A(rct_peep *peep, sint32 index) continue; // Check if the footpath has a queue line TV monitor on it - if (footpath_element_has_path_scenery(mapElement) && footpath_element_path_scenery_is_ghost(mapElement)){ + if (footpath_element_has_path_scenery(mapElement) && !footpath_element_path_scenery_is_ghost(mapElement)){ uint8 pathSceneryIndex = footpath_element_get_path_scenery_index(mapElement); rct_scenery_entry *sceneryEntry = get_footpath_item_entry(pathSceneryIndex); if (sceneryEntry->path_bit.flags & PATH_BIT_FLAG_IS_QUEUE_SCREEN){