17 lines
No EOL
242 B
JavaScript
17 lines
No EOL
242 B
JavaScript
/*:
|
|
* @target MZ
|
|
* @plugindesc オートセーブシステム
|
|
* @author PB
|
|
*
|
|
* @help
|
|
*
|
|
*/
|
|
(() => {
|
|
'use strict';
|
|
|
|
Scene_Map.prototype.shouldAutosave = function() {
|
|
//return !this._lastMapWasNull;
|
|
return false;
|
|
};
|
|
|
|
})(); |