mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Make the IsNull checks in the hybrid extensions return true if thingDefName really is null. Also add another null check when searching for a hybrid.
This commit is contained in:
parent
204fe0ecc7
commit
6283baa778
2 changed files with 3 additions and 3 deletions
Binary file not shown.
|
@ -102,7 +102,7 @@ namespace RJW_Menstruation
|
|||
{
|
||||
get
|
||||
{
|
||||
return thingDefName?.Length < 1;
|
||||
return (thingDefName?.Length ?? 0) < 1;
|
||||
}
|
||||
}
|
||||
public ThingDef GetDef
|
||||
|
@ -131,7 +131,7 @@ namespace RJW_Menstruation
|
|||
if (hybridExtension.NullOrEmpty()) return null;
|
||||
else
|
||||
{
|
||||
return hybridExtension.Find(x => x.GetDef.defName?.Equals(race) ?? false);
|
||||
return hybridExtension.Find(x => x.GetDef?.defName?.Equals(race) ?? false);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -165,7 +165,7 @@ namespace RJW_Menstruation
|
|||
{
|
||||
get
|
||||
{
|
||||
return thingDefName?.Length < 1;
|
||||
return (thingDefName?.Length ?? 0) < 1;
|
||||
}
|
||||
}
|
||||
public ThingDef GetDef
|
||||
|
|
Loading…
Reference in a new issue