From 6b468f44f62cca6224eb8eb2d384640f43205b0b Mon Sep 17 00:00:00 2001 From: uncletrunks Date: Sun, 17 May 2020 11:03:02 -0500 Subject: [PATCH] fix for issue #149 --- src/game/spawn_object.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/game/spawn_object.c b/src/game/spawn_object.c index 5e416584..cc15c8e9 100644 --- a/src/game/spawn_object.c +++ b/src/game/spawn_object.c @@ -196,6 +196,7 @@ void unload_object(struct Object *obj) { geo_add_child(&gObjParentGraphNode, &obj->header.gfx.node); obj->header.gfx.node.flags &= ~GRAPH_RENDER_BILLBOARD; + obj->header.gfx.node.flags &= ~GRAPH_RENDER_CYLBOARD; obj->header.gfx.node.flags &= ~GRAPH_RENDER_ACTIVE; deallocate_object(&gFreeObjectList, &obj->header);