Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mail Framework Mod Incompatibility (Missing Items in Mail) in DGA - PPJA Redux Fix #342

Open
Solennial opened this issue May 19, 2022 · 1 comment

Comments

@Solennial
Copy link

Solennial commented May 19, 2022

Hi. I've had issues with items in mail not showing up as well as recipes. I've found a workaround or fix for seeds and fruit tree saplings but I haven't tested out the ones for recipes.

I fixed it by changing the attachment type to DGA and changing the name to the value path of each seed/sapling.

For example:

Finding the Value Path
{
"ShopId": "Hospital",
"Item":
{
"Value": "ppja.fruitsandveggies.DGA/Aloe Pod" ||This is the Value Path found in shop-entries.json
},
"Cost": 100,
"EnableConditions":
{
"Query: {{Year}} >= 2": "true",
"Season |contains=summer": "true"
}
},

Fixing the MFM mail.json/Items not appearing in mail
I turned this line of code
{
"Id": "ppja.aloepod",
"GroupID": "FruitsandVeggies.Seeds",
"Text": "aloepod.text",
"Title": "aloepod.title",
"Attachments": [{"Type": "Object", "Name":"Aloe Pod", "Stack": 5},],
"LetterBG": "CloudLetterBackground.png",
"Repeatable": false,
"Date": "25 spring Y2",
"Seasons": ["spring"],
"FriendshipConditions":
[
{ "NpcName": "Harvey", "FriendshipLevel": 7 }
],
/"SkillConditions":
[
{ "SkillName": "Farming", "SkillLevel": 1 }
]
/
},
into

{
"Id": "ppja.aloepod",
"GroupID": "FruitsandVeggies.Seeds",
"Text": "aloepod.text",
"Title": "aloepod.title",
"Attachments": [{"Type": "DGA", "Name":"ppja.fruitsandveggies.DGA/Aloe Pod", "Stack": 5},],
"LetterBG": "CloudLetterBackground.png",
"Repeatable": false,
"Date": "25 spring Y2",
"Seasons": ["spring"],
"FriendshipConditions":
[
{ "NpcName": "Harvey", "FriendshipLevel": 7 }
],
/"SkillConditions":
[
{ "SkillName": "Farming", "SkillLevel": 1 }
]
/
},

@Solennial Solennial changed the title Mail Framework Mod Incompatibility (Missing Items in Mail) Mail Framework Mod Incompatibility (Missing Items in Mail) in DGA - PPJA Redux May 19, 2022
@Solennial Solennial changed the title Mail Framework Mod Incompatibility (Missing Items in Mail) in DGA - PPJA Redux Mail Framework Mod Incompatibility (Missing Items in Mail) in DGA - PPJA Redux Fix May 19, 2022
@hamburger0102
Copy link

is there any way to get the recipes w/o the mail? or u can only get it by mail?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants