Uhm I just noticed that if you save and load a savegame all maps will reset.
Right now I'm able to respawn all defeated enemies and all other erased events simply by leaving a map and reloading the game.
I don't think this should happen at all? :o
It's funny that I never noticed this until now after testplaying my game for more than 50 hours the last months.^^
Edit: I managed to save the dynamic maps into the savegames now to prevent the respawning of events after loading with these lines of code in the save and load methods for now:
Do you think this will cause any trouble?
It works for me so far..
Right now I'm able to respawn all defeated enemies and all other erased events simply by leaving a map and reloading the game.
I don't think this should happen at all? :o
It's funny that I never noticed this until now after testplaying my game for more than 50 hours the last months.^^
Edit: I managed to save the dynamic maps into the savegames now to prevent the respawning of events after loading with these lines of code in the save and load methods for now:
Code:
Marshal.dump($game_map_d, file)
Code:
$game_map_d = Marshal.load(file)
Do you think this will cause any trouble?
It works for me so far..