diff --git a/Content.Server/Corvax/StationGoal/StationGoalPaperSystem.cs b/Content.Server/Corvax/StationGoal/StationGoalPaperSystem.cs index 3e409a527310..c1d97399b7d1 100644 --- a/Content.Server/Corvax/StationGoal/StationGoalPaperSystem.cs +++ b/Content.Server/Corvax/StationGoal/StationGoalPaperSystem.cs @@ -86,7 +86,7 @@ public bool SendStationGoal(EntityUid? ent, StationGoalPrototype goal) var dataToCopy = new Dictionary(); var paperDataToCopy = new PaperPhotocopiedData() { - Content = Loc.GetString(goal.Text, ("station", MetaData(ent.Value).EntityName), ("rand_planet_name", Random_planet_name())), //SS220 Random planet name + Content = Loc.GetString(goal.Text, ("station", MetaData(ent.Value).EntityName), ("rand_planet_name", GetRandomPlanetName())), //SS220 Random planet name StampState = "paper_stamp-centcom", StampedBy = [ new() @@ -129,7 +129,7 @@ public bool SendStationGoal(EntityUid? ent, StationGoalPrototype goal) } //SS220 Random planet name begin - public static string Random_planet_name() + private string GetRandomPlanetName() { var rand = new Random(); string name = $"{(char) rand.Next(65, 90)}-";