]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
fixed missing characters in OwO accent (#29047)
authorMoomoobeef <62638182+Moomoobeef@users.noreply.github.com>
Wed, 10 Jul 2024 05:25:24 +0000 (00:25 -0500)
committerGitHub <noreply@github.com>
Wed, 10 Jul 2024 05:25:24 +0000 (15:25 +1000)
replaced two characters with ones that actually show up ingame

Content.Server/Speech/EntitySystems/OwOAccentSystem.cs

index cac3debe81969c1e0d0e6753c0298a6a46d09024..2b3d5aa3d491e1edc85261d6cef3d2499b618105 100644 (file)
@@ -8,7 +8,7 @@ namespace Content.Server.Speech.EntitySystems
         [Dependency] private readonly IRobustRandom _random = default!;
 
         private static readonly IReadOnlyList<string> Faces = new List<string>{
-            " (・`ω´・)", " ;;w;;", " owo", " UwU", " >w<", " ^w^"
+            " (•`ω´•)", " ;;w;;", " owo", " UwU", " >w<", " ^w^"
         }.AsReadOnly();
 
         private static readonly IReadOnlyDictionary<string, string> SpecialWords = new Dictionary<string, string>()