There was an error while loading. Please reload this page.
1 parent c7fd61a commit 01133d4Copy full SHA for 01133d4
1 file changed
components/controller.ts
@@ -822,16 +822,13 @@ export class Controller {
822
return
823
}
824
825
- this.hooks.getContractManifest.tap(
826
- manifest.Metadata.Id,
827
- (id, gameVersion) => {
828
- if (id === manifest.Metadata.Id) {
829
- return this.fixContract(manifest, gameVersion)
830
- }
+ this.hooks.getContractManifest.tap(manifest.Metadata.Id, (id) => {
+ if (id === manifest.Metadata.Id) {
+ return manifest
+ }
831
832
- return undefined
833
- },
834
- )
+ return undefined
+ })
835
836
837
/**
0 commit comments