Browse Source

modding #1974: Added the ability for mods to override default UIs

tags/v0.12.0
Shaun 1 year ago
parent
commit
971fc10e9c
1 changed files with 7 additions and 2 deletions
  1. +7
    -2
      src/client/ui/factory.js

+ 7
- 2
src/client/ui/factory.js View File

@@ -90,8 +90,13 @@ define([
let path = null;
if (options && options.path)
path = options.path + `\\${type}.js`;
else
path = this.root + 'ui/templates/' + type + '/' + type;
else {
const entryInClientConfig = globals.clientConfig.uiList.find(u => u.type === type);
if (entryInClientConfig)
path = entryInClientConfig.path;
else
path = this.root + 'ui/templates/' + type + '/' + type;
}
require([path], this.onGetTemplate.bind(this, options, type));
},


Loading…
Cancel
Save