fix: use string requires in init.luau

@self string requires are now supported by Roblox, so this should be fine. It works in my Pesde patches and fixes issues with missing types.
This commit is contained in:
Raine 2026-07-14 12:35:56 -04:00
parent 8f963fd14c
commit 91920ff9b9
No known key found for this signature in database
GPG key ID: CB527EAC2C6F130C

View file

@ -1,6 +1,6 @@
assert(game, "when using vide outside of Roblox, require lib.luau instead")
local vide = require(script.lib)
local vide = require("@self/lib")
export type source<T> = vide.source<T>
export type Source<T> = vide.Source<T>