Skip to content

Commit

Permalink
MealsJsonGenerator typo fix (space-syndicate#1628)
Browse files Browse the repository at this point in the history
  • Loading branch information
mhamsterr authored Dec 12, 2023
1 parent 52f0b4e commit a47689b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace Content.Server.GuideGenerator;

public sealed class MicrowaveMealRecipeJsonGenerator
public sealed class MealsRecipesJsonGenerator
{
public static void PublishJson(StreamWriter file)
{
Expand Down
2 changes: 1 addition & 1 deletion Content.Server/Entry/EntryPoint.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<IBaseServer>().Shutdown("Data generation done");
Expand Down

0 comments on commit a47689b

Please sign in to comment.