Browse Source

Run formatter

AnnulusGames 11 months ago
parent
commit
1652e753dc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Lua/LuaValue.cs

+ 1 - 1
src/Lua/LuaValue.cs

@@ -139,7 +139,7 @@ public readonly struct LuaValue : IEquatable<LuaValue>
             case LuaValueType.UserData:
                 if (t == typeof(ILuaUserData) || typeof(ILuaUserData).IsAssignableFrom(t))
                 {
-                    if(referenceValue is T tValue)
+                    if (referenceValue is T tValue)
                     {
                         result = tValue;
                         return true;