Mouse and Touchscreen movement patch
just extract the file inside www/js.
Explanation: every time you move the game checks if the distance you want to move is less than 1 and blocks your movement if it's not. I changed it so it only makes this check if you are inside of a dungeon.
Original code:
if (deltaX <= 1 && deltaY <= 1) {
Changed Code:
if ((deltaX <= 1 && deltaY <= 1) || !$gameDungeon.ready) {
edit: this game has a serious problem with game states so if you can't move after coming back from a dungeon just save and reload your save
I DIDN'T TEST THIS ON THE WHOLE GAME SO USE AT YOUR OWN RISK
Apparently, the room of recollection is considered a dungeon... so far, it's the only place I've found where we would benefit from long-distance movement instead of being limited to one square.
(Also, Grace's room at the inn is limited to one square, but since that room is so small, it's not much of a bother)
EDIT 2: Actually, going into the room of recollection breaks your patch – as long as Grace doesn't go look at those memories, she moves around her room and the inn as your patch intends, but once she accesses the recollection room and then comes back to the inn, she becomes limited to one square again...