* Work on Renegade style pipe codes

* Change age -> birthday
* Minor tweaks and tests
This commit is contained in:
Bryan Ashby 2015-07-20 22:56:48 -06:00
parent 31ff67f32b
commit 81e684cdcc
11 changed files with 58 additions and 28 deletions

View file

@ -50,7 +50,6 @@ function JSONCache() {
JSONCache.prototype.getJSON = function(fileName, cb) {
var self = this;
var filePath = paths.join(Config.paths.mods, fileName);
console.log(filePath)
if(filePath in this.cache) {
cb(null, this.cache[filePath]);