mirror of
https://github.com/electronicarts/CNC_TS_and_RA2_Mission_Editor.git
synced 2025-05-08 04:31:42 -04:00
fixed wrong house data initialized when creating new map .
This commit is contained in:
parent
6d7c240f13
commit
89bce98a13
1 changed files with 1 additions and 1 deletions
|
@ -1859,7 +1859,7 @@ void CFinalSunDlg::OnFileNew()
|
|||
for (auto idx = 0; idx < rulesHouseSec.Size(); idx++) {
|
||||
#ifdef RA2_MODE
|
||||
auto const& country = rulesHouseSec.Nth(idx).second;
|
||||
if (!country.CompareNoCase("nod") || country.CompareNoCase("gdi")) {
|
||||
if (!country.CompareNoCase("nod") || !country.CompareNoCase("gdi")) {
|
||||
continue;
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue