From a090dd7a733e63b3bea900766d9762061ae702f1 Mon Sep 17 00:00:00 2001 From: Axen Date: Mon, 30 Sep 2024 01:05:19 +0300 Subject: [PATCH] Remove `world:target` debug error (#137) * Removed error about needing `index` in `world:target` * The `index` parameter was made optional in #131 * Re-added `world.target` wrapper * Remove world.target and world.remove wrappers --------- Co-authored-by: EncodedVenom <32179912+EncodedVenom@users.noreply.github.com> --- src/init.luau | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/init.luau b/src/init.luau index 1fde9ee8..45583317 100644 --- a/src/init.luau +++ b/src/init.luau @@ -1709,21 +1709,6 @@ if _G.__JECS_DEBUG then return world_get(world, entity, ...) end - - World.target = function(world, entity, relation, index) - if index == nil then - local _1 = get_name(world, entity) - local _2 = get_name(world, relation) - - throw( - "We have changed the function call to require an index parameter," - .. ` please use world:target({_1}, {_2}, 0)` - ) - end - return world_target(world, entity, relation, index) - end - - World.remove = function() end end function World.new()