Dench
Dench
See the issue #47 Maybe add this functionality? With something like: `public static T FromJson(this string json, object defaultObject)`
The writer generates something like: `{"ScanDictionaries":{"..\":"a","%cd%\..\":"b"}}` instead of `{"ScanDictionaries":{"..\\":"a","%cd%\\..\\":"b"}}` FIX: In JSONWriter.cs at line 126 change `stringBuilder.Append((string)key);` to `stringBuilder.Append(((string)key).Replace("\\", "\\\\"));` In JSONParser.cs at line 243 change `string keyValue = elems[i].Substring(1,...
I've got a custom main menu configuration that works on 1.7.10. In 1.12 everything works as it should except button sounds. After adding "hoverSound" and "pressSound" parameters the button has...