
This guide explains how to fix the screen-freeze bug that occurs on random occasions.
How to Fix Screen Freeze
The Fix
Step 1
Find and open in your game directory rpg_core.js file:
- Steam -> steamapps -> common -> Fear & Hunger -> www -> js -> rpg_core.js
Step 2
Go to line 1872, and replace:
if (this._skipCount === 0) {
With:
if (this._skipCount <= 0) {
Be the first to comment