diff --git a/FModel/Settings/EndpointSettings.cs b/FModel/Settings/EndpointSettings.cs index 36ab9990..e4b755c3 100644 --- a/FModel/Settings/EndpointSettings.cs +++ b/FModel/Settings/EndpointSettings.cs @@ -17,7 +17,7 @@ public class EndpointSettings : ViewModel return new EndpointSettings[] { new("https://uedb.dev/svc/api/v1/fortnite/aes", "$.['mainKey','dynamicKeys']"), - new("https://uedb.dev/svc/api/v1/fortnite/mappings", "$.mappings.Brotli") + new("https://uedb.dev/svc/api/v1/fortnite/mappings", "$.mappings.ZStandard") }; default: return new EndpointSettings[] { new(), new() }; @@ -106,4 +106,4 @@ public class EndpointSettings : ViewModel } } } -} +} \ No newline at end of file diff --git a/FModel/ViewModels/CUE4ParseViewModel.cs b/FModel/ViewModels/CUE4ParseViewModel.cs index 0440ccc5..749b5ae5 100644 --- a/FModel/ViewModels/CUE4ParseViewModel.cs +++ b/FModel/ViewModels/CUE4ParseViewModel.cs @@ -370,7 +370,7 @@ public class CUE4ParseViewModel : ViewModel if (endpoint.Url == "https://fortnitecentral.genxgames.gg/api/v1/mappings") { endpoint.Url = "https://uedb.dev/svc/api/v1/fortnite/mappings"; - endpoint.Path = "$.mappings.Brotli"; + endpoint.Path = "$.mappings.ZStandard"; } var mappingsFolder = Path.Combine(UserSettings.Default.OutputDirectory, ".data"); @@ -1163,4 +1163,4 @@ public class CUE4ParseViewModel : ViewModel { return (a & b) == b; } -} +} \ No newline at end of file