Merge pull request #1200 from GlOwl/patch-1

fixed printing/removing order
This commit is contained in:
Stefan Kremser
2020-01-06 13:16:35 +01:00
committed by GitHub

View File

@@ -254,9 +254,10 @@ void Stations::deselect(int num) {
void Stations::remove(int num) { void Stations::remove(int num) {
if (!check(num)) return; if (!check(num)) return;
internal_remove(num);
prnt(ST_REMOVED_STATION); prnt(ST_REMOVED_STATION);
prntln(num); prntln(num);
internal_remove(num);
changed = true; changed = true;
} }