1
0
Fork 0

Add module to define Minecraft players

This commit is contained in:
Avery 2025-06-27 07:36:26 +00:00
parent e8d5aea2dc
commit 80691f1491
Signed by: Avery
GPG key ID: B684FD451B692E04
3 changed files with 31 additions and 15 deletions

View file

@ -0,0 +1,10 @@
builtins.listToAttrs (map (player: {
name = builtins.elemAt player 0;
value = {
name = builtins.elemAt player 0;
uuid = builtins.elemAt player 1;
};
}) [
[ "engullejamones" "b65a1bc3-c6a0-4e8c-99b8-3538cfec0cfc" ]
])