diff options
author | metamuffin <metamuffin@disroot.org> | 2023-09-27 17:19:42 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-09-27 17:19:42 +0200 |
commit | 42f9f87342780b74ef4d04956ff54ef50d2096da (patch) | |
tree | 97311daf279d3643a8b420fca78cac566989786d /client-web/public | |
parent | 64c522aa063679678232e16a616b2a7ddd1d9b12 (diff) | |
download | keks-meet-42f9f87342780b74ef4d04956ff54ef50d2096da.tar keks-meet-42f9f87342780b74ef4d04956ff54ef50d2096da.tar.bz2 keks-meet-42f9f87342780b74ef4d04956ff54ef50d2096da.tar.zst |
client-web: new words
Diffstat (limited to 'client-web/public')
-rw-r--r-- | client-web/public/start.html | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/client-web/public/start.html b/client-web/public/start.html index 68ddc0a..975b410 100644 --- a/client-web/public/start.html +++ b/client-web/public/start.html @@ -42,6 +42,8 @@ "Glowing", "Flavourful", "Tasty", + "Yummy", + "Soft", ], [ "Strawberry", @@ -53,6 +55,8 @@ "Tomato", "Lemon", "Apple", + "Pineapple", + "Pumpkin", ], [ "Muffin", @@ -60,12 +64,17 @@ "Cupcake", "Sandwish", "Cake", - "Crépe", + "Cookie", + "Crêpe", "Pancake", + "Biscuit", + "IceCream", + "Yogurt", + "Milkshake", ], ]; return frags - .map((f) => f[Math.floor(Math.random() * f.length)]) + .map(f => f[Math.floor(Math.random() * f.length)]) .join("") .trim(); } |