Reply To: [Beta 1.7] Possible Bugs

Home Forums Wayward [Beta 1.7] Possible Bugs Reply To: [Beta 1.7] Possible Bugs

#4647

@KageWraith Yikes! What a bug! Which browser are you using? Here’s a fix for that though. Load up the page and paste this in your console:

var playerFix = JSON.parse(localStorage.getItem('player'));
for (var i in playerFix.invItems) {
    if (!playerFix.invItems[i].type) {
        playerFix.invItems[i].type = "pileofsnow";
    }
}
localStorage.setItem('player', JSON.stringify(playerFix));

Then start the game normally!