@@ -26,7 +26,7 @@ <h2 style="font-size: 40px;">
2626 < button class ="main " onclick ="returnHome() "> Return to main site</ button >
2727 </ div >
2828 < div >
29- < a class ="eaglercraft " onclick ="openEaglercraft() "> < img draggable ="false " src ="https://raw.githubusercontent.com/HolyMythicalMan/Ludos-Assets/main/game_icons/eaglerx.png " width ="100 " height ="100 "> < br > Eaglercraft Clients</ a >
29+ < button class ="eaglercraft " onclick ="openEaglercraft() "> < img draggable ="false " src ="https://raw.githubusercontent.com/HolyMythicalMan/Ludos-Assets/main/game_icons/eaglerx.png " width ="100 " height ="100 "> < br > Eaglercraft Clients</ button >
3030 </ div >
3131 < div class ="games ">
3232 < div id ="games-container "> </ div >
@@ -53,7 +53,7 @@ <h2 style="font-size: 40px;">
5353 { name : "Planetesimals" , id : "planet" , icon : "planet.png" , onclick : "openGame('planetesimals')" } ,
5454 { name : "Cookie Clicker" , id : "cookie-clicker" , icon : "cookie-clicker.png" , onclick : "openGame('cookieClicker')" } ,
5555 { name : "Baldi's Basics" , id : "baldis-basics" , icon : "baldis-basics.png" , onclick : "openGame('baldisBasics')" } ,
56- { name : "1v1.Lol" , id : "vlol" , icon : "vlol.png" , onclick : "openGame('onevonelol')" } ,
56+ // {name: "1v1.Lol", id: "vlol", icon: "vlol.png", onclick: "openGame('onevonelol')"},
5757 { name : "A Dance of Fire and Ice" , id : "dance-fire-ice" , icon : "dance.png" , onclick : "openGame('aDanceOfFireAndIce')" } ,
5858 { name : "Ten Minutes Till Dawn" , id : "ten-mins" , icon : "10-mins.png" , onclick : "openGame('tenMinutesUntilDawn')" } ,
5959 { name : "2048" , id : "number-game" , icon : "2048.png" , onclick : "openGame('2048')" } ,
@@ -75,7 +75,7 @@ <h2 style="font-size: 40px;">
7575 planetesimals : "planetesimals" ,
7676 cookieClicker : "choco-chip" ,
7777 baldisBasics : "baldis-basics" ,
78- onevonelol : "shootgame3d" ,
78+ // onevonelol: "shootgame3d",
7979 aDanceOfFireAndIce : "a-dance-of-fire-and-ice" ,
8080 tenMinutesUntilDawn : "10-minutes-till-dawn" ,
8181 2048 : "numbergame" ,
@@ -92,10 +92,10 @@ <h2 style="font-size: 40px;">
9292
9393 const gamesHtml = gameIcons . map ( game => {
9494 return `
95- <a class="${ game . id . toLowerCase ( ) } " onclick="${ game . onclick } ">
95+ <button class="${ game . id . toLowerCase ( ) } " onclick="${ game . onclick } ">
9696 <img draggable="false" src="https://raw.githubusercontent.com/HolyMythicalMan/Ludos-Assets/main/game_icons/${ game . icon } " width="80" height="80">
9797 <br>${ game . name }
98- </a >
98+ </button >
9999 ` ;
100100 } ) . join ( "" ) ;
101101
0 commit comments