From 6a255244df8463e92ccef467acfce247abcf2226 Mon Sep 17 00:00:00 2001 From: Luke Slater Date: Sat, 12 May 2018 18:56:14 +0100 Subject: [PATCH] fix save callback lack (lol) --- run.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.js b/run.js index dc8e5cf..29e1a03 100644 --- a/run.js +++ b/run.js @@ -332,7 +332,7 @@ DBot.prototype.reloadModules = function() { }.bind(this)); - this.save(); + this.save(function() {}); }; new DBot();