From e36374c4cfbbe1e277def4362612abf1c6c45029 Mon Sep 17 00:00:00 2001 From: bjorn Date: Sun, 7 Apr 2024 13:31:36 -0700 Subject: [PATCH] rm useless check; --- src/api/l_physics_shapes.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/api/l_physics_shapes.c b/src/api/l_physics_shapes.c index 25183021..d133291f 100644 --- a/src/api/l_physics_shapes.c +++ b/src/api/l_physics_shapes.c @@ -159,7 +159,6 @@ Shape* luax_newcompoundshape(lua_State* L, int index) { lua_rawgeti(L, -1, 1); shapes[i] = luax_checkshape(L, -1); - lovrCheck(shapes[i], "Expected a Shape for CompoundShape entry #%d", i + 1); lua_pop(L, 1); int index = 2;