kone
소미소프트

소미소프트

호스트에게 속아 미니게임에서 秒 이거 거슬리는 사람

05/26/2026, 13:15:19
일반
988 views · 0 likes

게임 폴더\js\plugins\TMBunnyTouch.js 에서 아래 코드에 대하여

//337번째 줄 코드
Window_BunnyTimer.prototype.refresh = function() {
    this.contents.clear();
    var n = this._timeLimit ? Math.max(this._timeLimit - this._time, 0) : this._time;
    this.drawText((n / 1000).toFixed(3) + " 秒", 0, 0, this.contents.width, 'right');
  };

위 코드를

Window_BunnyTimer.prototype.refresh = function() {
    this.contents.clear();
    var n = this._timeLimit ? Math.max(this._timeLimit - this._time, 0) : this._time;
    this.drawText((n / 1000).toFixed(3) + " 초", 0, 0, this.contents.width, 'right');
  };

아래로 변경하면 됨


이거 하나땜에 번역탭에 다시 올리긴 좀 에바인거 같아서 냅둠



0
0 comments