Skip to content

Commit

Permalink
port: thesimsresource.js bypass
Browse files Browse the repository at this point in the history
  • Loading branch information
driedpampas committed Sep 20, 2023
1 parent e22b5c5 commit d2c54c0
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/bypasses/thesimsresource.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import BypassDefinition from './BypassDefinition.js'

export default class TheSimsResource extends BypassDefinition {
constructor() {
super()
// Custom bypass required bases can be set here
}

execute() {
window.setTimeout = f => setTimeout(f, 1)
}
}

export const matches = ['thesimsresource.com/downloads/details/id/']

0 comments on commit d2c54c0

Please sign in to comment.