Skip to content
Snippets Groups Projects
Commit 1f48eef0 authored by Ed86's avatar Ed86
Browse files

Merge branch 'debugaddition' into 'Dev'

Add some additional information to the debug  menu

See merge request Ed86/rjw!67
parents ceee6d2f e5c591e7
No related branches found
No related tags found
No related merge requests found
......@@ -22,6 +22,9 @@ namespace rjw
{
StringBuilder stringBuilder = new StringBuilder();
stringBuilder.AppendLine();
stringBuilder.AppendLine("canFuck: " + xxx.can_fuck(pawn) + ", canBeFucked: " + xxx.can_be_fucked(pawn) + ", loving: " + xxx.can_do_loving(pawn));
stringBuilder.AppendLine("canRape: " + xxx.can_rape(pawn) + ", canBeRaped: " + xxx.can_get_raped(pawn));
stringBuilder.AppendLine();
stringBuilder.AppendLine("Humans - Colonists:");
foreach (Pawn partner in pawn.Map.mapPawns.AllPawnsSpawned.Where(x => x != pawn && x.RaceProps.Humanlike && x.IsColonist).OrderByDescending(x => xxx.would_fuck(pawn, x)))
{
......
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