Merge branch 'dev' into main

This commit is contained in:
vegapnk 2023-01-15 16:43:21 +01:00 committed by GitHub
commit f3cc5e7ee2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
39 changed files with 763 additions and 232 deletions

View file

@ -5,6 +5,7 @@ using System.Text;
using System.Threading.Tasks;
using Verse;
using RimWorld;
using rjw;
namespace RJW_BGS
{
@ -120,5 +121,22 @@ namespace RJW_BGS
}
}
/// <summary>
/// Used only for debugging, to see what you loaded and how it looks.
/// </summary>
private static void logAllFoundRaceGroupGenes()
{
foreach (RaceGroupDef def in DefDatabase<RaceGroupDef>.AllDefs)
{
Log.Message("defName = " + def.defName);
if (def.raceNames != null)
{
foreach (string race in def.raceNames)
{
Log.Message(race);
}
}
}
}
}
}