@urso/core 0.8.18 → 0.8.19

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@urso/core",
3
- "version": "0.8.18",
3
+ "version": "0.8.19",
4
4
  "description": "HTML5 game engine",
5
5
  "main": "build/js/index.js",
6
6
  "author": "Megbrimef",
@@ -264,7 +264,7 @@ class ModulesInstancesController {
264
264
  */
265
265
  _getClassByPath(path, noModes) {
266
266
  let pathArr = path.split('.');
267
- let entitiesArray = Urso.helper.mergeArrays(['Urso', 'Game'], pathArr);
267
+ let entitiesArray = ['Urso', 'Game'].concat(pathArr);
268
268
  return this._checkPathExist(entitiesArray, noModes);
269
269
  }
270
270