Big project cleanup with overhaul of file responsibilities (KISS) and code (DRY, YAGNI)
This commit is contained in:
@@ -23,8 +23,7 @@ public class ResearchData
|
||||
|
||||
public string GetReadableName()
|
||||
{
|
||||
string noUnderscore = Id.Replace("_", " ").ToLower();
|
||||
return char.ToUpper(noUnderscore[0]) + noUnderscore.Substring(1);
|
||||
return ItemData.GetReadableName(Id);
|
||||
}
|
||||
|
||||
public static string GetIndex(string readable)
|
||||
|
||||
Reference in New Issue
Block a user