We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cfbcd4 commit b583062Copy full SHA for b583062
parser/parser.js
@@ -81,7 +81,7 @@ class ChatterScript {
81
const methodName = match[2];
82
// Check if the class and method exist
83
if (className in this.classes && methodName in this.classes[className]) {
84
- this.classes[className][methodName](args); // Call the function with arguments
+ this.classes[className][methodName](args.join(',')); // Call the function with arguments
85
}
86
87
0 commit comments