minor fixes

This commit is contained in:
2022-11-06 11:34:41 +01:00
parent e9d3c2c05b
commit ab85a08151
4 changed files with 10 additions and 6 deletions

View File

@@ -13,7 +13,7 @@ namespace Pilz.Dalamud.Tools.Strings
{
public static void ApplyStringChanges(StringChangesProps props)
{
if (props.StringChanges.Any())
if (props.StringChanges != null && props.StringChanges.Any())
{
var seString = props.Destination;
List<StringPosition> stringPositionsOrdered = GetOrderedStringPositions(props);