-
Notifications
You must be signed in to change notification settings - Fork 4
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
Cannot change or add Villagebox villager trades #20
Comments
The config keeps reseting itself, i think it doesn't work as a configurable config. |
I tested again just in case and it's working, I tried twice but both time the existed VillageBoxData.json didn't be replaced with the default one. The code doesn't allow it to happen as well public static void LoadData(File dir)
{
File file = new File(dir, jsonDataFileName);
if(file.exists())
{
try {
loadDataFromFile(file);
} catch (IOException e) {
e.printStackTrace();
}
}
else
{
try {
createDefaultDataFile(file);
} catch (IOException e) {
e.printStackTrace();
}
}
} |
Do you have other mods installed? I guess maybe something cleans up the config folder every time MC launches |
I have FTBU and I do /reload and /reload_client commands. Also have Crafttweaker if it matters, using the Skyexchange 2 Lite pack, I just love this mod, it even fits with projecte in a skyblock pack. |
Thank you! I'm so glad you love our mod :D |
I also tried it clientside only. But how do I make sure the changes apply? Restart the client or does /reload works from ftbu? |
And I have tried with only jei and villagebox, I changed the current values and added a different trade. And when i closed the client and re opened it nothing changed, looked at the configs file and the things i have changed has reset to original values, but the lines I've added still remain. But no effect to the game. |
you mean the json file remains changed but it doesn't affect the game? It sounds like the game is loading a different file rather than the one you modified. Do you have more than one minecraft installed on the same machine? |
Of course I do, I use curse with many profiles if its the thing you mean. |
I think I'm supposed to do that? Why can't I do that?
The text was updated successfully, but these errors were encountered: