diff --git a/TODO.txt b/TODO.txt index 5e7bd0366..c180416f0 100644 --- a/TODO.txt +++ b/TODO.txt @@ -237,13 +237,23 @@ * add panama canal NA DONE 12/12/2024 * make boats work on oceania 12/12/2024 * add capture alert DONE 12/13/2024 +* better emojis ðŸģïļðŸĪĶ‍♂ïļðŸ–•â˜ŪïļðŸŦĄðŸ˜ĄðŸ˜ˆðŸĪĄ DONE 12/13/2024 +* bug: player names not updating sometimes +* make player editeable configs +* games disconnects on multplayer after some time +* couldn't scroll left on build menu to deploy bombs (mobile) +* UI/test too big on mobile +* bug: build city 25k bump doesn't match troop/worker ratio +* bug: mobile: if you don't have enough money can't get rid of build menu +* give naval units health +* show players joined username in private lobby +* have bots build cities & defense posts * allow longer names and allow them to be displayed in the Rank UI not be cut * make boats work on lakes * record game winner -* record player ip in bigquery * repaint canvas after tab away to prevent blank screen * on mobile can't click away from build menu -* replay stored games +* replay storedgames * record commit hash of game * remove alliance when player dies * put delay on adjust troop ratio to reduce number of messages diff --git a/src/client/graphics/layers/radial/EmojiTable.ts b/src/client/graphics/layers/radial/EmojiTable.ts index 50aff3642..7d516f94f 100644 --- a/src/client/graphics/layers/radial/EmojiTable.ts +++ b/src/client/graphics/layers/radial/EmojiTable.ts @@ -1,11 +1,11 @@ -import {LitElement, html, css} from 'lit'; -import {customElement, state} from 'lit/decorators.js'; +import { LitElement, html, css } from 'lit'; +import { customElement, state } from 'lit/decorators.js'; const emojiTable: string[][] = [ - ["😀", "ðŸ˜ą", "ðŸĪĐ", "ðŸŽŊ", "ðŸĨš"], - ["ðŸŠĶ", "👏", "ðŸĨ‰", "ðŸĨˆ", "ðŸĨ‡"], + ["😀", "ðŸ˜ą", "ðŸĪĄ", "ðŸ˜Ą", "ðŸĨš"], + ["😈", "👏", "ðŸĨ‰", "ðŸĨˆ", "ðŸĨ‡"], ["ðŸĪ™", "ðŸĨ°", "😇", "😊", "ðŸ”Ĩ"], - ["💊", "ðŸĨģ", "💀", "😭", "ðŸĪĶ‍♂ïļ"], + ["💊", "ðŸģïļ", "💀", "😭", "ðŸĪĶ‍♂ïļ"], ["😎", "👎", "👍", "ðŸĨą", "💔"], ["âĪïļ", "💰", "ðŸĪ", "ðŸ›Ąïļ", "ðŸ’Ĩ"], ["🆘", "🕊ïļ", "➡ïļ", "⮅ïļ", "↙ïļ"],