Merge pull request #9929 from Broxzier/bugfix/remove-park-fences-screen-artifacts

Fix: Fences still visible after using remove_park_fences
This commit is contained in:
Hielke Morsink 2019-08-23 21:47:30 +02:00 committed by GitHub
commit 1ee5c0fa56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -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;
}