2021-05-23 16:55:57 +02:00
2021-05-23 16:55:57 +02:00
2021-05-16 16:31:31 +02:00
2021-05-16 16:31:31 +02:00
2021-05-16 16:31:31 +02:00
2021-05-20 00:31:31 +02:00
2021-05-16 16:31:31 +02:00
2021-05-16 16:31:31 +02:00
2021-05-20 00:31:31 +02:00
2021-05-16 16:31:31 +02:00
2021-05-23 16:55:57 +02:00
2021-05-23 16:55:57 +02:00
2021-05-23 16:55:57 +02:00
2021-05-16 16:31:31 +02:00
2021-05-16 16:31:31 +02:00

Populate player name (from most used one) after database is fully populated:

UPDATE `player` SET `name`=(
    SELECT `name`
    FROM `player_names`
    WHERE `player_names`.guid = `player`.guid
    GROUP BY guid, name
    ORDER BY MAX(`time`) DESC LIMIT 1
);
Description
No description provided
Readme 458 KiB
Languages
JavaScript 90.3%
Python 6.3%
HTML 2.9%
CSS 0.5%