pony-celes/www/js/plugins/Mano_SkillSort.js
2023-12-31 23:21:30 -06:00

15 lines
389 B
JavaScript

/*:
* @author しぐれん
* @plugindesc スキルをID順にソートします。
*/
(function () {
"use strict";
const Window_SkillList_makeItemList = Window_SkillList.prototype.makeItemList;
Window_SkillList.prototype.makeItemList = function () {
Window_SkillList_makeItemList.call(this);
this._data.sort(function (a, b) {
return a.id - b.id;
});
};
})();