Correct mistakes in pronoun presets

This commit is contained in:
mars 2022-05-26 22:11:23 -06:00
parent e08573a443
commit 12292ea04c
2 changed files with 2 additions and 26 deletions

23
log.txt
View File

@ -1,23 +0,0 @@
warning: associated function is never used: `format_short`
--> src/pronouns.rs:71:12
|
71 | pub fn format_short(&self) -> String {
| ^^^^^^^^^^^^
|
= note: `#[warn(dead_code)]` on by default
warning: field is never read: `edit_receiver`
--> src/tui.rs:17:5
|
17 | edit_receiver: Receiver<EditEvent>,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
warning: field is never read: `identity`
--> src/tui.rs:18:5
|
18 | identity: Identity,
| ^^^^^^^^^^^^^^^^^^
warning: `udp-mud` (bin "udp-mud") generated 3 warnings
Finished release [optimized] target(s) in 0.05s
Running `target/release/udp-mud --username server --bind-addr '0.0.0.0:54321' --connect '98.43.173.90:54321'`

View File

@ -11,13 +11,12 @@ pub fn make_presets() -> Vec<Pronouns> {
// TODO add more from https://pronoun.is and https://askanonbinary.tumblr.com/pronouns
let presets = [
(false, false, "she", "her", "her", "hers", "herself"),
(false, false, "he", "him", "him", "him", "himself"),
(false, false, "they", "them", "their", "theirs", "themself"),
(false, false, "he", "him", "his", "his", "himself"),
(false, true, "they", "them", "their", "theirs", "themselves"),
(false, false, "fae", "faer", "faer", "faers", "faerself"),
(false, false, "e", "em", "eir", "eirs", "emself"),
(true, false, "E", "Em", "Eir", "Eirs", "Emself"),
(false, false, "it", "its", "its", "its", "itself"),
(false, false, "it", "it", "its", "its", "itself"),
];
presets