Fix plan lines not being refreshed when privacy mode changed

pull/461/head
Jonathan G Rennison 1 year ago
parent 3412e43608
commit a3e313b4d5

@ -127,9 +127,17 @@ CommandCost CmdChangePlanVisibility(TileIndex tile, DoCommandFlag flags, uint32
CommandCost ret = CheckOwnership(p->owner);
if (ret.Failed()) return ret;
if (flags & DC_EXEC) {
p->visible_by_all = p2 != 0;
Window *w = FindWindowById(WC_PLANS, 0);
if (w) w->InvalidateData(INVALID_PLAN, false);
bool visible = (p2 != 0);
if (p->visible_by_all != visible) {
p->visible_by_all = visible;
Window *w = FindWindowById(WC_PLANS, 0);
if (w) w->InvalidateData(INVALID_PLAN, false);
if (p->owner != _local_company && p->visible) {
for (PlanLine *line : p->lines) {
if (line->visible) line->MarkDirty();
}
}
}
}
return CommandCost();
}

Loading…
Cancel
Save