From bd429772430d43f53f6c68d9c0cf6eaa1b7ff84d Mon Sep 17 00:00:00 2001 From: Hielke Morsink Date: Fri, 23 Aug 2019 21:01:08 +0200 Subject: [PATCH] Fix: Fences still visible after using remove_park_fences --- src/openrct2/interface/InteractiveConsole.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/openrct2/interface/InteractiveConsole.cpp b/src/openrct2/interface/InteractiveConsole.cpp index 543eafd4f3..e0eb6293a0 100644 --- a/src/openrct2/interface/InteractiveConsole.cpp +++ b/src/openrct2/interface/InteractiveConsole.cpp @@ -1211,6 +1211,8 @@ static int32_t cc_remove_park_fences(InteractiveConsole& console, [[maybe_unused } } while (tile_element_iterator_next(&it)); + gfx_invalidate_screen(); + console.WriteFormatLine("Park fences have been removed."); return 0; }