From 0daed03ba03f3c11d86f41ffa9238dad01f686c1 Mon Sep 17 00:00:00 2001 From: NepDisk Date: Tue, 21 Oct 2025 22:23:44 -0400 Subject: [PATCH] Fix moving floor thinker type not synching --- src/p_saveg.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/p_saveg.c b/src/p_saveg.c index d1015e2cd..50f5c8474 100644 --- a/src/p_saveg.c +++ b/src/p_saveg.c @@ -2658,6 +2658,7 @@ static thinker_t *SyncFloormoveThinker(savebuffer_t *save, actionf_p1 thinker, t ht->thinker.function.acp1 = thinker; } + SYNC(ht->type); SYNC(ht->crush); SYNC(ht->sector); SYNC(ht->direction);