remove wrank numbers, use simple numbers for cockroach system for leaves
This commit is contained in:
parent
fd1b8ed50c
commit
a0876f0af8
1 changed files with 2 additions and 1 deletions
|
|
@ -126,7 +126,8 @@
|
|||
formatIndicator({ characterName }: { characterName: CharName }): string {
|
||||
const count = Leaves.countForChar({ characterName });
|
||||
const cockroach = Emoji.get("cockroach") || "🪳"; //"🪲";
|
||||
const countEmoji = Emoji.get(`wrank_${count}`) || `${count}`;
|
||||
// const countEmoji = Emoji.get(`wrank_${count}`) || `${count}`;
|
||||
const countEmoji = `${count}`;
|
||||
return `${cockroach}${countEmoji}`;
|
||||
},
|
||||
};
|
||||
Loading…
Add table
Reference in a new issue