@@ -17,22 +17,22 @@ async function patch(bg) {
17
17
return teams . find ( x => x . id === id ) ;
18
18
} ) ( bg , item , fiber , props , nth , findContext , ctxProvider ) ;
19
19
const { shorthand } = team ;
20
- const abslveLink = `https://slavfox.space/abslve/?foreboding-kaleidoscope# ${ shorthand } ` ;
20
+ const tableLink = `https://blaseballplayers.netlify.app/team/ ${ shorthand } ` ;
21
21
22
22
let logoLine = item . querySelector ( '.Team-LogoLine-Wrapper' ) ;
23
23
24
- let abslve = document . createElement ( 'a' ) ;
25
- abslve . href = abslveLink ;
26
- abslve . textContent = 'abslve ' ;
27
- abslve . classList . add ( 'Team-Abslve ' ) ;
28
- logoLine . after ( abslve ) ;
24
+ let table = document . createElement ( 'a' ) ;
25
+ table . href = tableLink ;
26
+ table . textContent = 'Table ' ;
27
+ table . classList . add ( 'Team-Table ' ) ;
28
+ logoLine . after ( table ) ;
29
29
30
- markPatched ( item , 'abslveLink ' ) ;
31
- markPatched ( bg , 'abslveLink ' ) ;
30
+ markPatched ( item , 'tableLink ' ) ;
31
+ markPatched ( bg , 'tableLink ' ) ;
32
32
}
33
33
34
- const abslveLink = {
35
- name : 'abslveLink ' ,
34
+ const tableLink = {
35
+ name : 'tableLink ' ,
36
36
selector : '.Modal-Background' ,
37
37
contains : '.Team-Header' ,
38
38
path : / ^ \/ t e a m \/ / ,
@@ -41,4 +41,4 @@ const abslveLink = {
41
41
apply : patch
42
42
} ;
43
43
44
- export default abslveLink ;
44
+ export default tableLink ;
0 commit comments