diff --git a/parser/parser.js b/parser/parser.js index 5716e2f..e732c84 100644 --- a/parser/parser.js +++ b/parser/parser.js @@ -52,6 +52,7 @@ class ChatterScript { // Allow calls to defined functions and methods else if (this.isFunctionCall(line)) { const args = this.extractArgs(line); + console.log(line,args) this.callFunction(line, args); } }