Project1

标题: 1.60 mv事件机制 的错误 [打印本页]

作者: 汪汪    时间: 2018-4-4 21:11
标题: 1.60 mv事件机制 的错误
本帖最后由 汪汪 于 2018-4-4 21:13 编辑





1.30版

JAVASCRIPT 代码复制
  1. // Break Loop
  2. Game_Interpreter.prototype.command113 = function() {
  3.     while (this._index < this._list.length - 1) {
  4.         this._index++;
  5.         var command = this.currentCommand();
  6.         if (command.code === 413 && command.indent < this._indent) {
  7.             break;
  8.         }
  9.     }
  10.     return true;
  11. };

1.60版

JAVASCRIPT 代码复制
  1. // Break Loop
  2. Game_Interpreter.prototype.command113 = function () {
  3.     var depth = 0;
  4.     while (this._index < this._list.length - 1) {
  5.         this._index++;
  6.         var command = this.currentCommand();
  7.  
  8.         if (command.code === 112)
  9.             depth++;
  10.  
  11.         if (command.code === 413 && command.indent < this._indent) {
  12.             if (depth > 0)
  13.                 depth--;
  14.             else
  15.                 break;
  16.         }
  17.     }
  18.     return true;
  19. };

作者: 梦想家大魔王    时间: 2018-4-5 18:52
1.6不是收回了吗?建议先别折腾1.6了,降回1.5.x用着,等1.6重新放出再看要不要升级。




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1