@rbxts/app-forge 0.7.2-prototype.26 → 0.7.2-prototype.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -6,7 +6,7 @@ local function hasAppSource(name, group)
|
|
|
6
6
|
local _name = name
|
|
7
7
|
local sourceMap = AppSources[_name]
|
|
8
8
|
if not sourceMap then
|
|
9
|
-
|
|
9
|
+
return false
|
|
10
10
|
end
|
|
11
11
|
local _source = sourceMap
|
|
12
12
|
if _source ~= nil then
|
|
@@ -15,7 +15,7 @@ local function hasAppSource(name, group)
|
|
|
15
15
|
end
|
|
16
16
|
local source = _source
|
|
17
17
|
if not source then
|
|
18
|
-
|
|
18
|
+
return false
|
|
19
19
|
end
|
|
20
20
|
return true
|
|
21
21
|
end
|
package/out/renders.luau
CHANGED