If you're like me, you've often had RPG Maker MV games seemingly freeze up and have probably memorized how to navigate the menu to save your game before closing it, but it's still annoying.
To fix this issue, either as a developer, or as a player, open the folder the game is in, then go to the www\js folder and edit
Search for the line that says
Code:
if (this._skipCount === 0) {
and replace it with
Code:
if (this._skipCount <= 0) {
.
I hope this helps people out and makes the games even more enjoyable without the frustration of freezes!