From a47689ba438638772ffec83ddfbe7837f0320fb0 Mon Sep 17 00:00:00 2001 From: mhamster <81412348+mhamsterr@users.noreply.github.com> Date: Tue, 12 Dec 2023 15:30:35 +0700 Subject: [PATCH] MealsJsonGenerator typo fix (#1628) --- .../Corvax/GuideGenerator/MealsRecipesJsonGenerator.cs | 2 +- Content.Server/Entry/EntryPoint.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Corvax/GuideGenerator/MealsRecipesJsonGenerator.cs b/Content.Server/Corvax/GuideGenerator/MealsRecipesJsonGenerator.cs index 12e3fab3a3c..a36f8712848 100644 --- a/Content.Server/Corvax/GuideGenerator/MealsRecipesJsonGenerator.cs +++ b/Content.Server/Corvax/GuideGenerator/MealsRecipesJsonGenerator.cs @@ -11,7 +11,7 @@ namespace Content.Server.GuideGenerator; -public sealed class MicrowaveMealRecipeJsonGenerator +public sealed class MealsRecipesJsonGenerator { public static void PublishJson(StreamWriter file) { diff --git a/Content.Server/Entry/EntryPoint.cs b/Content.Server/Entry/EntryPoint.cs index 5c1fbcf65b9..4a6f8e80dd0 100644 --- a/Content.Server/Entry/EntryPoint.cs +++ b/Content.Server/Entry/EntryPoint.cs @@ -137,7 +137,7 @@ public override void PostInit() EntityJsonGenerator.PublishJson(file); file.Flush(); file = resourceManager.UserData.OpenWriteText(resPath.WithName("mealrecipes_" + dest)); - MicrowaveMealRecipeJsonGenerator.PublishJson(file); + MealsRecipesJsonGenerator.PublishJson(file); file.Flush(); // Corvax-Wiki-End IoCManager.Resolve().Shutdown("Data generation done");