From 820bda8eb127910e958558caf3468d9312b681ae Mon Sep 17 00:00:00 2001 From: wiam <230908809+wiam77@users.noreply.github.com> Date: Sun, 25 Jan 2026 23:15:48 -0300 Subject: [PATCH] Simplify connector check in Properties type function Removed redundant check for connector in the Properties type function. --- src/create.luau | 1 - 1 file changed, 1 deletion(-) diff --git a/src/create.luau b/src/create.luau index 77683eb..3540555 100644 --- a/src/create.luau +++ b/src/create.luau @@ -76,7 +76,6 @@ type function Properties(instance: type?) for i, v in instance:properties() do local connector = v.read and v.read.tag == "table" and v.read:readproperty(types.singleton("Connect")) if connector then - if not connector then continue end local params = connector:parameters().head if not params then continue end local listener = params[2]