From ec46cf374babd660d149df509306d41bef866470 Mon Sep 17 00:00:00 2001 From: Axen Date: Mon, 30 Sep 2024 00:29:00 +0300 Subject: [PATCH] Re-added `world.target` wrapper --- src/init.luau | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/init.luau b/src/init.luau index 5e9198c..25181b0 100644 --- a/src/init.luau +++ b/src/init.luau @@ -1710,6 +1710,10 @@ if _G.__JECS_DEBUG then return world_get(world, entity, ...) end + World.target = function(world, entity, relation, index) + return world_target(world, entity, relation, index) + end + World.remove = function() end end