From 52d659bf91ed91d20d5ee5d4964106a1d1f2974c Mon Sep 17 00:00:00 2001 From: Schwartz Gandhi <155924247+SchwartzGandhi@users.noreply.github.com> Date: Mon, 4 Nov 2024 02:50:07 -0500 Subject: [PATCH 1/2] Update patches.rs --- src/patches.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/patches.rs b/src/patches.rs index 8e793e8b..75011268 100644 --- a/src/patches.rs +++ b/src/patches.rs @@ -9423,6 +9423,7 @@ fn patch_credits( /* https://mobile.twitter.com/ZoidCTF/status/1542699504041750528 */ res.kind.as_strg_mut().unwrap().edit_strings( ("David 'Zoid' Kirsch".to_string(), "Zoid Kirsch".to_string()), + ("Kerry Anne Odem".to_string(), "Kerry Ann Odem".to_string()), Languages::All, ); From 0745dfcef371c98c9710bf12916ed567bb62a071 Mon Sep 17 00:00:00 2001 From: Schwartz Gandhi <155924247+SchwartzGandhi@users.noreply.github.com> Date: Mon, 4 Nov 2024 02:58:38 -0500 Subject: [PATCH 2/2] I do not know rust --- src/patches.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/patches.rs b/src/patches.rs index 75011268..fbf65366 100644 --- a/src/patches.rs +++ b/src/patches.rs @@ -9423,10 +9423,13 @@ fn patch_credits( /* https://mobile.twitter.com/ZoidCTF/status/1542699504041750528 */ res.kind.as_strg_mut().unwrap().edit_strings( ("David 'Zoid' Kirsch".to_string(), "Zoid Kirsch".to_string()), + Languages::All, + ); + res.kind.as_strg_mut().unwrap().edit_strings( ("Kerry Anne Odem".to_string(), "Kerry Ann Odem".to_string()), Languages::All, ); - + Ok(()) }