Skip to content
Snippets Groups Projects
Commit 74fc0086 authored by Ed86's avatar Ed86
Browse files

added props display for vagina, breast hediffs

parent a05349ca
No related branches found
No related tags found
No related merge requests found
......@@ -198,6 +198,11 @@ namespace rjw
{
yield return line;
}
if (PartProps.TryGetProps(parent, out List<string> propslist))
{
yield return "Properties: " + propslist.ToCommaList();
}
}
IEnumerable<string> GetBreastTip(bool extended)
......@@ -248,6 +253,11 @@ namespace rjw
{
yield return line;
}
if (PartProps.TryGetProps(parent, out List<string> propslist))
{
yield return "Properties: " + propslist.ToCommaList();
}
}
IEnumerable<string> GetBraCupTip()
......
......@@ -2,6 +2,7 @@ using System.Text;
using Verse;
using RimWorld;
using Multiplayer.API;
using System.Collections.Generic;
namespace rjw
{
......@@ -107,6 +108,13 @@ namespace rjw
if (Eggs != "")
stringBuilder.AppendLine("Eggs: " + Eggs);
}
//TODO: someday add properties
//if (PartProps.TryGetProps(parent, out List<string> propslist))
//{
// yield return "Properties: " + propslist.ToCommaList();
// if (Eggs != "")
// stringBuilder.AppendLine("Properties: " + propslist.ToCommaList());
//}
return stringBuilder.ToString();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment