[Content Patcher] Paint Masks not updated unless restarting the game
Leroymilo opened this issue · 1 comments
When patching a paint mask, the changes are not updated according to the Update
field in the patch but upon restarting the game. For some reason, the Farm house is a special case which is somehow more broken: the paint seem to partially disappear when toggling the patch (see screenshots). There's nothing about the relevant content patch in the log other than saying it was loaded (the Steam API issue is caused by me starting the game from a terminal because the console does not open when starting from Steam for some reason).
OS : Linux Fedora
Steps to reproduce :
- Install a content patch patching a paintable building and its paint mask (I used my own mod).
- Load a game with a paintable building on the farm.
- Paint the building.
- Toggle the patch (I used GMCM to do this step)
This does not change upon sleeping, even after exiting to title. - Sleep (to save), close the game, start the game and load the save with the painted buildings.
Here are the changes for the stable and the farm house :
{
"Action": "Load",
"Target": "Buildings/Stable, Buildings/Stable_PaintMask",
"FromFile": "assets/Buildings/Stable/{{TargetWithoutPath}}_{{season}}.png",
"Update": "OnTimeChange"
}
{
"Action": "Load",
"Target": "Buildings/houses, Buildings/houses_PaintMask",
"FromFile": "assets/Buildings/Houses/{{TargetWithoutPath}}_{{season}}.png",
"Update": "OnTimeChange"
}
Changing Action
to EditImage
instead of Load
did not fix the issue.