We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efe3cfb commit b0db0b3Copy full SHA for b0db0b3
1 file changed
Code/ValueSystem/Value.cs
@@ -1,6 +1,7 @@
1
using System.Collections;
2
using LabApi.Features.Wrappers;
3
using SER.Code.Exceptions;
4
+using SER.Code.Extensions;
5
using SER.Code.ScriptSystem;
6
7
namespace SER.Code.ValueSystem;
@@ -41,7 +42,7 @@ public static Value Parse(object obj, Script? script)
41
42
};
43
}
44
- public static string FriendlyName(Type type) => type.Name.Replace("Value", "").ToLower();
45
+ public static string FriendlyName(Type type) => type.Name.Replace("Value", "").Spaceify().ToLower();
46
public string FriendlyName() => FriendlyName(GetType());
47
48
public override string ToString()
0 commit comments