From 2e32f4e1e88c59d81809cd93b44f7f7951b480a3 Mon Sep 17 00:00:00 2001 From: Will Toohey Date: Mon, 13 Mar 2017 14:32:53 +1000 Subject: [PATCH] Commented too much --- js/dllpatcher.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/dllpatcher.js b/js/dllpatcher.js index 6ccc29a..69c5382 100644 --- a/js/dllpatcher.js +++ b/js/dllpatcher.js @@ -225,13 +225,13 @@ DllPatcher.prototype.saveDll = function() { return; var fname = this.filename; - /* disabled as it can get kinda hectic with many patches for(var i = 0; i < this.mods.length; i++) { var enabledStr = this.mods[i].applyPatch(this.dllFile); + /* disabled as it can get kinda hectic with many patches if(enabledStr) { fname += '-' + enabledStr; - } - } */ + } */ + } fname += '.dll'; var blob = new Blob([this.dllFile], {type: "application/octet-stream"});