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:
parent
59872a8181
commit
659777a974
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue