chore(client): oops forgot to throw return

This commit is contained in:
khtsly 2026-02-16 16:51:49 +07:00
parent d2e362fd8d
commit 492da9e607

View file

@ -33,6 +33,7 @@ Client.useSchema = function(remoteName: string, schema: Buffer.SchemaType)
local id = Replication.get_id(remoteName)
if not id then
warn(`[Warp]: ".useSchema"::"{remoteName}" does not exist, likely its not registered on the server yet.`)
return
end
eventSchemas[id] = schema
end