@rpgjs/server 5.0.0-alpha.19 → 5.0.0-alpha.20

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/dist/index.js CHANGED
@@ -18618,7 +18618,7 @@ function findModules(context, namespace) {
18618
18618
  let modules = [];
18619
18619
  for (let key in context["values"]) {
18620
18620
  if (key.endsWith("Module" + namespace)) {
18621
- modules.push(context["values"][key]);
18621
+ modules.push(context["values"][key].values.get("__default__"));
18622
18622
  }
18623
18623
  }
18624
18624
  return modules;