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
parent f579d25770
commit e3ccc4f0ea

View file

@ -2476,7 +2476,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);
}