We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a17baa6 commit d8806cdCopy full SHA for d8806cd
1 file changed
ink-engine-runtime/VariablesState.cs
@@ -75,7 +75,7 @@ public object this[string variableName]
75
}
76
set {
77
if (!_defaultGlobalVariables.ContainsKey (variableName))
78
- throw new StoryException ("Cannot assign to a variable that hasn't been declared in the story");
+ throw new StoryException ("Cannot assign to a variable ("+variableName+") that hasn't been declared in the story");
79
80
var val = Runtime.Value.Create(value);
81
if (val == null) {
0 commit comments