Skip to content

Commit

Permalink
Address miscellaneous review items
Browse files Browse the repository at this point in the history
  • Loading branch information
vaketola committed Feb 22, 2024
1 parent bd1f7a8 commit 24e03df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public sealed class ShadowkinAccentSystem : EntitySystem
{
[Dependency] private readonly IRobustRandom _random = default!;

private static readonly Regex mRegex = new(@"[adgjmps]", RegexOptions.Compiled | RegexOptions.IgnoreCase);
private static readonly Regex mRegex = new(@"[adgjmpsv]", RegexOptions.Compiled | RegexOptions.IgnoreCase);
private static readonly Regex aRegex = new(@"[behknqtwy]", RegexOptions.Compiled | RegexOptions.IgnoreCase);
private static readonly Regex rRegex = new(@"[cfiloruxz]", RegexOptions.Compiled | RegexOptions.IgnoreCase);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public sealed partial class ShadowkinComponent : Component
public float MinPowerMin = 15f;

[ViewVariables(VVAccess.ReadWrite)]
public float MinPowerMax = 60f;
public float MinPowerMax = 40f;
#endregion


Expand Down

0 comments on commit 24e03df

Please sign in to comment.