게임 폴더\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');
};아래로 변경하면 됨
이거 하나땜에 번역탭에 다시 올리긴 좀 에바인거 같아서 냅둠
