Skip to content

Commit

Permalink
port: lkc21.net
Browse files Browse the repository at this point in the history
  • Loading branch information
driedpampas authored Sep 20, 2023
1 parent d7a42ed commit 92133bb
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/bypasses/emulatorgames.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import BypassDefinition from './BypassDefinition.js'

export default class CustomBypass extends BypassDefinition {
export default class Emulatorgames extends BypassDefinition {
constructor() {
super()
// Custom bypass required bases can be set here
Expand Down
2 changes: 1 addition & 1 deletion src/bypasses/firefaucet.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import BypassDefinition from './BypassDefinition.js'

export default class CustomBypass extends BypassDefinition {
export default class Firefaucet extends BypassDefinition {
constructor() {
super()
// Custom bypass required bases can be set here
Expand Down
14 changes: 14 additions & 0 deletions src/bypasses/lkc21.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import BypassDefinition from './BypassDefinition.js'

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

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

export const matches = ['lkc21.net', 'layarkacaxxi.org']
2 changes: 1 addition & 1 deletion src/bypasses/racaty.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import BypassDefinition from './BypassDefinition.js'

export default class CustomDomainBypass extends BypassDefinition {
export default class Racaty extends BypassDefinition {
constructor() {
super()
// Custom bypass required bases can be set here
Expand Down

0 comments on commit 92133bb

Please sign in to comment.