mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
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
f579d25770
commit
e3ccc4f0ea
1 changed files with 1 additions and 1 deletions
|
|
@ -2476,7 +2476,7 @@ static void UnArchiveSectors(savebuffer_t *save)
|
||||||
|
|
||||||
// Add new entries.
|
// Add new entries.
|
||||||
for (j = 0; j < sectors[i].tags.count; j++)
|
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…
Add table
Reference in a new issue