From 7fc6263e37687be253ecd4828c8767b9a74c4e9c Mon Sep 17 00:00:00 2001 From: jyelon Date: Tue, 29 Mar 2022 18:06:24 -0400 Subject: [PATCH] Fix a bug in World::patch_visible --- luprex/core/cpp/world-diffxmit.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/luprex/core/cpp/world-diffxmit.cpp b/luprex/core/cpp/world-diffxmit.cpp index d353f46c..fdefe54a 100644 --- a/luprex/core/cpp/world-diffxmit.cpp +++ b/luprex/core/cpp/world-diffxmit.cpp @@ -81,6 +81,7 @@ void World::patch_visible(StreamBuffer *sb, DebugCollector *dbc) { Tangible *t = tangible_get(id); assert(t != nullptr); t->anim_queue_.patch(sb, dbc); + t->update_plane_item(); } }