Skip to content

Commit

Permalink
Expand regex to allow more characters in variable merging
Browse files Browse the repository at this point in the history
  • Loading branch information
bcssov committed Nov 30, 2023
1 parent 41ac8fa commit d624ffb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IronyModManager.Services/ModBaseService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public abstract class ModBaseService : BaseService
/// <summary>
/// The clean variables pattern
/// </summary>
private const string CleanVariablesPattern = @"[^\w\s\@]";
private const string CleanVariablesPattern = @"[^\w\s\@=.,_]";

#endregion Fields

Expand Down

0 comments on commit d624ffb

Please sign in to comment.