fix(macos): suggest critter emojis only
parent
b817225fb8
commit
7a87f3cfb8
|
|
@ -20,9 +20,6 @@ enum AgentIdentityEmoji {
|
||||||
let table: [(needle: String, emoji: String)] = [
|
let table: [(needle: String, emoji: String)] = [
|
||||||
("lobster", "🦞"),
|
("lobster", "🦞"),
|
||||||
("sloth", "🦥"),
|
("sloth", "🦥"),
|
||||||
("space", "🪐"),
|
|
||||||
("rocket", "🚀"),
|
|
||||||
("astronaut", "🧑🚀"),
|
|
||||||
("octopus", "🐙"),
|
("octopus", "🐙"),
|
||||||
("crab", "🦀"),
|
("crab", "🦀"),
|
||||||
("shark", "🦈"),
|
("shark", "🦈"),
|
||||||
|
|
@ -30,9 +27,14 @@ enum AgentIdentityEmoji {
|
||||||
("dog", "🐕"),
|
("dog", "🐕"),
|
||||||
("owl", "🦉"),
|
("owl", "🦉"),
|
||||||
("fox", "🦊"),
|
("fox", "🦊"),
|
||||||
("robot", "🤖"),
|
("otter", "🦦"),
|
||||||
("wizard", "🧙"),
|
("raccoon", "🦝"),
|
||||||
("ninja", "🥷"),
|
("badger", "🦡"),
|
||||||
|
("hedgehog", "🦔"),
|
||||||
|
("koala", "🐨"),
|
||||||
|
("penguin", "🐧"),
|
||||||
|
("frog", "🐸"),
|
||||||
|
("bear", "🐻"),
|
||||||
]
|
]
|
||||||
|
|
||||||
for entry in table where normalized.contains(entry.needle) {
|
for entry in table where normalized.contains(entry.needle) {
|
||||||
|
|
@ -41,4 +43,3 @@ enum AgentIdentityEmoji {
|
||||||
return "🦞"
|
return "🦞"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue