unholy-maiden/js/plugins/Unit03_autosave.js
2025-12-18 09:44:14 -06:00

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;
};
})();