replace all instances of "department-{id}" with department.name (#34607)
replace all instances of "department-{id}" with department.name"
This commit is contained in:
committed by
GitHub
parent
5e7cc99555
commit
371b1f8012
@@ -170,7 +170,7 @@ namespace Content.Client.LateJoin
|
||||
|
||||
foreach (var department in departments)
|
||||
{
|
||||
var departmentName = Loc.GetString($"department-{department.ID}");
|
||||
var departmentName = Loc.GetString(department.Name);
|
||||
_jobCategories[id] = new Dictionary<string, BoxContainer>();
|
||||
var stationAvailable = _gameTicker.JobsAvailable[id];
|
||||
var jobsAvailable = new List<JobPrototype>();
|
||||
|
||||
Reference in New Issue
Block a user