@rbxts/app-forge 0.4.2 → 0.4.3
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.
- package/out/init.luau +7 -1
- package/package.json +1 -1
package/out/init.luau
CHANGED
|
@@ -31,7 +31,13 @@ do
|
|
|
31
31
|
self.rulesManager = RulesManager.new(self)
|
|
32
32
|
end
|
|
33
33
|
function AppForge:getBind(name)
|
|
34
|
-
|
|
34
|
+
local _condition = not RunService:IsRunning()
|
|
35
|
+
if _condition then
|
|
36
|
+
local _binds = self.binds
|
|
37
|
+
local _name = name
|
|
38
|
+
_condition = not (_binds[_name] ~= nil)
|
|
39
|
+
end
|
|
40
|
+
if _condition then
|
|
35
41
|
return nil
|
|
36
42
|
end
|
|
37
43
|
local _binds = self.binds
|