Custom NPC houses wont show up on the map.

mrsovern

Newcomer
I'm making a mod with Content Patcher and I edited the original map to have a tent by Leahs house as a temporary house for her. I tried loading it with this
{
"Action": "EditMap",
"Target": "Content/Maps/Forest",
"FromFile": "assets/Forest.tmx"
},
I also tried loading it with this
{
"Action": "Load",
"Target": "Content/Maps/Forest",
"FromFile": "assets/Forest.tmx"
},
And some other ones that didn't quite work. Any ideas?
 

Velocityissin

Farmhand
You might have fixed it by now but the issue is the Target action. You should remove the Content. It should look like this:
"Target": "Maps/Forest",
The rest is fine. I would probably use the Load action, but EditMap should work as well.
 
Top