We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3708d4a commit fb60ce7Copy full SHA for fb60ce7
1 file changed
Code/ContextSystem/Contexts/VariableDefinition/VariableDefinitionContext.cs
@@ -1,5 +1,4 @@
1
using SER.Code.ContextSystem.BaseContexts;
2
-using SER.Code.ContextSystem.Contexts;
3
using SER.Code.ContextSystem.Structures;
4
using SER.Code.Exceptions;
5
using SER.Code.Extensions;
@@ -74,7 +73,7 @@ protected override IEnumerator<float> Execute()
74
73
if (_expression.GetValue().SuccessTryCast<TValue>().HasErrored(out var error, out var tValue))
75
{
76
throw new ScriptRuntimeError(this,
77
- $"Value returned by '{FriendlyName}' cannot be assigned to the '{varToken.RawRep}' variable: {error}"
+ $"Value returned by {FriendlyName} cannot be assigned to the '{varToken.RawRep}' variable: {error}"
78
);
79
}
80
0 commit comments