|
48 | 48 | background-color: #091B53;
|
49 | 49 | background-size: 100% auto;
|
50 | 50 | background-repeat: repeat-y;
|
51 |
| - background-image: linear-gradient(0deg, rgba(0,45,119,0) 4%, #003A99 100%),url(https://halite.io/assets/images/bg-pattern.png); |
| 51 | + background-image: linear-gradient(0deg, rgba(0,45,119,0) 4%, #003A99 100%),url(bg-pattern.png); |
52 | 52 | color: rgba(255,255,255,0.8);
|
53 | 53 | font-family: "Nunito Sans","Helvetica Neue","Helvetica","Arial",sans-serif;
|
54 | 54 |
|
|
282 | 282 | </head>
|
283 | 283 | <body>
|
284 | 284 | <div class="container">
|
285 |
| - <img class="logo" alt="Halite" src="https://halite.io/assets/images/full_logo.svg"> |
| 285 | + <img class="logo" alt="Halite" src="full_logo.svg"> |
286 | 286 | <div class="title subtitle">Statistics</div>
|
287 | 287 | <div class="content">
|
288 | 288 | <div class="tabs">
|
|
404 | 404 | <?php echo formatNumber($games_users_count); ?> users in games<br>
|
405 | 405 | Page generated in <span class="generated"></span>ms<br>
|
406 | 406 | <br>
|
407 |
| - <a href="https://forums.halite.io/t/collection-of-post-mortems-bot-source-code/1335.html" target="_blank">Collection of Post-mortems & Bot Source Code for Halite III</a> |
| 407 | + You can find the source code for this website <a href="https://github.com/mlomb/halite2018-stats" target="_blank">here</a>. |
| 408 | + |
| 409 | + <br> |
| 410 | + <br> |
| 411 | + <a href="https://forums.halite.io/t/collection-of-post-mortems-bot-source-code/1335.html" target="_blank">Collection of Post-mortems & Bot Source Code for Halite III</a> |
| 412 | + |
408 | 413 | <br>
|
409 | 414 | <br>
|
410 |
| - Games are fetched every 5 seconds. The leaderboard every 10 seconds. Records are computed every hour.<br> |
| 415 | + <strike>Games are fetched every 5 seconds. The leaderboard every 10 seconds. Records are computed every hour.</strike> The competition is over!<br> |
411 | 416 | For suggestions and improvements <a href="https://discordapp.com/users/129079402548953088/" target="_bank">ping me</a> on Discord!
|
412 | 417 | <br>
|
413 | 418 | <br>
|
|
416 | 421 | </div>
|
417 | 422 | </div>
|
418 | 423 | <div class="footer">
|
419 |
| - <span>by <a href="https://2018.halite.io/user/?user_id=206" target="_blank">mlomb</a> (<a href="https://github.com/mlomb" target="_blank">GitHub</a>)<span> |
| 424 | + <span>by <a href="https://mlomb.me" target="_blank">mlomb</a> (<a href="https://github.com/mlomb" target="_blank">GitHub</a>)<span> |
420 | 425 | </div>
|
421 | 426 | </div>
|
422 | 427 | <script src="https://www.amcharts.com/lib/3/amcharts.js"></script>
|
@@ -772,7 +777,7 @@ function leaderboardRankToTierImage(rank) {
|
772 | 777 | if(tier_index == 0) return "";
|
773 | 778 | var name = tierNameFromIndex(tier_index);
|
774 | 779 |
|
775 |
| - return '<img class="tier" src="https://2018.halite.io/assets/images/level-' + tier_index + '.png" alt="' + name + '" title="' + name + '">'; |
| 780 | + return '<img class="tier" src="level-' + tier_index + '.png" alt="' + name + '" title="' + name + '">'; |
776 | 781 | }
|
777 | 782 | function getProfileImage(player, only_url) {
|
778 | 783 | // TODO Google Fallback
|
@@ -919,7 +924,7 @@ function updateLiveGameFeed() {
|
919 | 924 | var row = $(`
|
920 | 925 | <tr data-game-id="` + game.game_id + `">
|
921 | 926 | <td>
|
922 |
| - <a href="https://halite.io/play?game_id=` + game.game_id + `" target="_blank">` + d.toLocaleString() + `</a><br> |
| 927 | + <a href="https://2018.halite.io/play?game_id=` + game.game_id + `" target="_blank">` + d.toLocaleString() + `</a><br> |
923 | 928 | <time class="timeago" datetime="` + d.toISOString() + `"></time>
|
924 | 929 | </td>
|
925 | 930 | <td style="padding: 10px 0;"><table class="result-table">` + result_html + `</table></td>
|
|
0 commit comments