Handle soft hyphens for french dialogs
This commit is contained in:
parent
6edb9d9219
commit
37dedcc09e
@ -126,6 +126,10 @@ public static class DataManagerExtensions
|
||||
return "";
|
||||
else if (payload is { Type: ReadOnlySePayloadType.Macro, MacroCode: MacroCode.NonBreakingSpace })
|
||||
return " ";
|
||||
else if (payload is { Type: ReadOnlySePayloadType.Macro, MacroCode: MacroCode.Hyphen })
|
||||
return "-";
|
||||
else if (payload is { Type: ReadOnlySePayloadType.Macro, MacroCode: MacroCode.SoftHyphen })
|
||||
return ""; // unclear when this is even visible in game; doesn't seem to be in select lists
|
||||
else
|
||||
return payload.ToString();
|
||||
}));
|
||||
|
Loading…
Reference in New Issue
Block a user