Parcourir la source

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

tags/v0.12.0
Shaun il y a 1 an
Parent
révision
971fc10e9c
1 fichiers modifiés avec 7 ajouts et 2 suppressions
  1. +7
    -2
      src/client/ui/factory.js

+ 7
- 2
src/client/ui/factory.js Voir le fichier

@@ -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));
},


Chargement…
Annuler
Enregistrer