Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // If not using "Detailed Equipment Stats" mod
- Window_StatCompare.prototype.refresh = function() {
- this.contents.clear();
- if (!this._actor) return;
- for (var i = 0; i < 7; ++i) {
- this.drawItem(0, this.lineHeight() * 0.9 * i, i);
- }
- };
- // If using "Detailed Equipment Stats" mod
- // NOTE: Only use this if facing problems with the mod
- Window_StatCompare.prototype.drawParamList = function() {
- var params = this.paramIdArray();
- for (var i = 0; i < params.length; i++) {
- var paramId = params[i];
- var posY = this.lineHeight() * 0.9 * i;
- this.drawParam(0, posY, paramId);
- }
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement