@quenty/loader 10.9.3 → 10.9.4-canary.656.67d6ba1.0

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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [10.9.4-canary.656.67d6ba1.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/loader@10.9.3...@quenty/loader@10.9.4-canary.656.67d6ba1.0) (2026-02-17)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Fix replication mode for detected plugins (this fixes tests bootstrapped through server script) ([32d6ff5](https://github.com/Quenty/NevermoreEngine/commit/32d6ff5aaee0136a3e4be4a793d1c3b0411c90ba))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [10.9.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/loader@10.9.2...@quenty/loader@10.9.3) (2026-01-12)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/loader",
3
- "version": "10.9.3",
3
+ "version": "10.9.4-canary.656.67d6ba1.0",
4
4
  "description": "A simple module loader for Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -29,5 +29,5 @@
29
29
  "publishConfig": {
30
30
  "access": "public"
31
31
  },
32
- "gitHead": "55f4a7407de7247aceea574de4d2f57dab70cb91"
32
+ "gitHead": "67d6ba1d3625dc76f7a54ac13e75da2cc82ccc64"
33
33
  }
package/src/init.lua CHANGED
@@ -55,6 +55,8 @@ function Loader.bootstrapGame(packages: Instance)
55
55
  else
56
56
  self:_setupClientReplication()
57
57
  end
58
+ elseif self._replicationType == ReplicationType.PLUGIN then
59
+ self:_setupLoaderPopulation(self._packages)
58
60
  end
59
61
 
60
62
  GLOBAL_PACKAGE_TRACKER:AddPackageRoot(packages)