Skip to content

Commit

Permalink
fixed missing characters in OwO accent (space-wizards#29047)
Browse files Browse the repository at this point in the history
replaced two characters with ones that actually show up ingame
  • Loading branch information
Moomoobeef authored and Baa14453 committed Oct 19, 2024
1 parent 9cdc864 commit af29d4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Server/Speech/EntitySystems/OwOAccentSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public sealed class OwOAccentSystem : EntitySystem
[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>()
Expand Down

0 comments on commit af29d4e

Please sign in to comment.