From b5f1f019789e739c42293994cec59b1bf65e0a59 Mon Sep 17 00:00:00 2001 From: hgn Date: Sat, 4 Nov 2023 15:08:30 +0000 Subject: [PATCH] fix remote players ghosting --- world_gate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/world_gate.c b/world_gate.c index bb62e34..4c76b07 100644 --- a/world_gate.c +++ b/world_gate.c @@ -181,6 +181,7 @@ static int render_gate( world_instance *world, world_instance *world_inside, } render_world( world_inside, &world_gates.cam, layer_depth ); + render_remote_players( world_inside, &world_gates.cam ); { glDisable( GL_STENCIL_TEST ); @@ -197,7 +198,6 @@ static int render_gate( world_instance *world, world_instance *world_inside, glDisable( GL_STENCIL_TEST ); } - render_remote_players( world_inside, &world_gates.cam ); return 1; } -- 2.25.1