palworld-host-save-fix icon indicating copy to clipboard operation
palworld-host-save-fix copied to clipboard

Bug same GUID

Open TheSonic03 opened this issue 1 year ago • 0 comments

I played the game with my friends in co-op mode. I created the server and I, obviously, tried to trasfer the saving file from my friend's world inside my server. My old GUID and my new GUID is the same. So when i runned the script I got an error. I opened "fix-host-save.py" and I noticed the problem at line 131. So then I modified the script like that:

# We must rename the patched save file from the old GUID to the new GUID for the server to recognize it.
    if os.path.exists(new_sav_path):
        if new_sav_path != old_sav_path:
            os.remove(new_sav_path)
            os.rename(old_sav_path, new_sav_path)

    print('Fix has been applied! Have fun!')

This will resolve the issue. If you want you can update your script. This is my first time I use Python language, and I changed the script quickly, maybe you can change it in an better way than mine.

TheSonic03 avatar Jan 27 '24 19:01 TheSonic03