Fix UnArchiveSectors not actually adding tags

It was removing tags and then also removing the new ones, instead of removing tags and adding the new ones. Netsaves are so fucking scuffed.
This commit is contained in:
Sally Coolatta 2024-10-11 20:09:19 -04:00 committed by NepDisk
parent 59872a8181
commit 659777a974

View file

@ -1600,7 +1600,7 @@ static void UnArchiveSectors(savebuffer_t *save)
// Add new entries.
for (j = 0; j < sectors[i].tags.count; j++)
Taggroup_Remove(tags_sectors, sectors[i].tags.tags[j], i);
Taggroup_Add(tags_sectors, sectors[i].tags.tags[j], i);
}