mirror of
https://github.com/Acamaeda/The-Modding-Tree.git
synced 2024-11-21 16:13:55 +00:00
Fix loading not escaping and decoding
This commit is contained in:
parent
f22629bca3
commit
6f2af68298
1 changed files with 1 additions and 1 deletions
|
@ -171,7 +171,7 @@ function load() {
|
|||
if (get === null || get === undefined)
|
||||
player = getStartPlayer();
|
||||
else
|
||||
player = Object.assign(getStartPlayer(), JSON.parse(atob(get)));
|
||||
player = Object.assign(getStartPlayer(), JSON.parse(decodeURIComponent(escape(atob(get)))));
|
||||
fixSave();
|
||||
|
||||
if (player.offlineProd) {
|
||||
|
|
Loading…
Reference in a new issue