From 659777a9749cc33d28042afa9d2df714a63be352 Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Fri, 11 Oct 2024 20:09:19 -0400 Subject: [PATCH] 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. --- src/p_saveg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_saveg.c b/src/p_saveg.c index a0eace3b0..5aa4b04bf 100644 --- a/src/p_saveg.c +++ b/src/p_saveg.c @@ -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); }