Skip to content

Commit

Permalink
Merge pull request #48 from ac2pic/patch-1
Browse files Browse the repository at this point in the history
Fixed advanced patching
  • Loading branch information
2767mr authored Aug 25, 2019
2 parents dd668ec + 926d6a7 commit df77bd8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/mods/simplify/postloadModule.js
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ import * as patchSteps from './lib/patch-steps-es6.js';
continue;
}

await this._applyPatch(successArgs[0], values[i + 1], patches[i].mod.baseDirectory);
await this._applyPatch(successArgs[0], values[i + 1].value, patches[i].mod.baseDirectory);
}
return successArgs;
}
Expand Down
2 changes: 1 addition & 1 deletion ccloader/js/ccloader.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { UI } from './ui.js';
import { Loader } from './loader.js';
import { Plugin } from './plugin.js';

const CCLOADER_VERSION = '2.14.3';
const CCLOADER_VERSION = '2.14.4';

export class ModLoader {
constructor() {
Expand Down

0 comments on commit df77bd8

Please sign in to comment.