- Joined
- May 21, 2020
- Messages
- 3
- Reaction score
- 0
- First Language
- Swedish
- Primarily Uses
- RMMV
So i've scouted around on already existing threads regarding this error output but i didn't find anyone with a similar core issue. This is a completely new game with a fresh install, using only SRDude's plugins in the game and i keep getting this error, i've looked in the console and the error leads me to SRDude's code below.
And the other rpg managers.js leads me to this code below
Here's the images of the plugin list & console attached below.
JavaScript:
SRD.notetagsLoaded = false;
SRD.DataManager_isDatabaseLoaded = DataManager.isDatabaseLoaded;
DataManager.isDatabaseLoaded = function() {
if(!SRD.DataManager_isDatabaseLoaded.apply(this, arguments)) return false;
if(!SRD.notetagsLoaded) {
SRD.NotetagGetters.forEach(function(func) {
func.call(this);
}, this);
SRD.notetagsLoaded = true;
}
return true;
};
JavaScript:
SceneManager.catchException = function(e) {
if (e instanceof Error) {
Graphics.printError(e.name, e.message);
console.error(e.stack);
} else {
Graphics.printError('UnknownError', e);
}
AudioManager.stopAll();
this.stop();
};
Attachments
-
48.1 KB Views: 4
-
198.7 KB Views: 4