MilkieRae
Greenhorn
Howdy
This is my first time making a mod and I'm trying to make a recolor for the map, but every time I open the game to test to see if it applies I keep getting this notification on my smapi terminal.
[Content Patcher] Can't apply image patch "Desaturated Valley > Recolor Bath House" to Maps/bathhouse_tiles: the FromFile file 'assets/Maps/bathhouse_tiles.png' doesn't exist.
[Content Patcher] Can't apply image patch "Desaturated Valley > Recolor Boat Tunnel" to Maps/boatTunnelTiles: the FromFile file 'assets/Maps/boatTunnelTiles.png' doesn't exist.
Heres my code, I've looked at other recolor mod content.jsons and am still struggling with figuring out whats the problem.
{
"Format": "2.0.0",
"Changes": [
//Maps
{
"LogName": "Recolor Bath House",
"Action": "EditImage",
"Target": "Maps/bathhouse_tiles",
"FromFile": "assets/Maps/bathhouse_tiles.png",
"PatchMode": "Overlay"
},
{
"LogName": "Recolor Boat Tunnel",
"Action": "EditImage",
"Target": "Maps/boatTunnelTiles",
"FromFile": "assets/Maps/boatTunnelTiles.png",
"PatchMode": "Overlay"
}
]
}
I'd really appreciate any help
This is my first time making a mod and I'm trying to make a recolor for the map, but every time I open the game to test to see if it applies I keep getting this notification on my smapi terminal.
[Content Patcher] Can't apply image patch "Desaturated Valley > Recolor Bath House" to Maps/bathhouse_tiles: the FromFile file 'assets/Maps/bathhouse_tiles.png' doesn't exist.
[Content Patcher] Can't apply image patch "Desaturated Valley > Recolor Boat Tunnel" to Maps/boatTunnelTiles: the FromFile file 'assets/Maps/boatTunnelTiles.png' doesn't exist.
Heres my code, I've looked at other recolor mod content.jsons and am still struggling with figuring out whats the problem.
{
"Format": "2.0.0",
"Changes": [
//Maps
{
"LogName": "Recolor Bath House",
"Action": "EditImage",
"Target": "Maps/bathhouse_tiles",
"FromFile": "assets/Maps/bathhouse_tiles.png",
"PatchMode": "Overlay"
},
{
"LogName": "Recolor Boat Tunnel",
"Action": "EditImage",
"Target": "Maps/boatTunnelTiles",
"FromFile": "assets/Maps/boatTunnelTiles.png",
"PatchMode": "Overlay"
}
]
}
I'd really appreciate any help