Run PostLoad() for "else actions" as well

This commit is contained in:
WarmUpTill
2023-10-26 19:57:16 +02:00
committed by WarmUpTill
parent c3f4caa6f3
commit c1f5c49eda

View File

@@ -614,6 +614,9 @@ bool Macro::PostLoad()
for (auto &a : _actions) {
a->PostLoad();
}
for (auto &a : _elseActions) {
a->PostLoad();
}
return true;
}