@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.
Files changed (2) hide show
  1. package/out/init.luau +7 -1
  2. 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
- if not RunService:IsRunning() then
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/app-forge",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "description": "An App Manager for react",
5
5
  "main": "out/init.lua",
6
6
  "packageManager": "bun@1.3.1",