Add 'comfort' emote

pull/41/head
Liza 2024-09-06 13:25:10 +02:00
parent e126031753
commit 0eef3cd5eb
Signed by: liza
GPG Key ID: 7199F8D727D55F67
3 changed files with 4 additions and 1 deletions

View File

@ -778,7 +778,8 @@
"bow", "bow",
"uchiwasshoi", "uchiwasshoi",
"clap", "clap",
"victorypose" "victorypose",
"comfort"
] ]
} }
} }

View File

@ -32,5 +32,6 @@ public sealed class EmoteConverter() : EnumConverter<EEmote>(Values)
{ EEmote.Uchiwasshoi, "uchiwasshoi" }, { EEmote.Uchiwasshoi, "uchiwasshoi" },
{ EEmote.Clap, "clap" }, { EEmote.Clap, "clap" },
{ EEmote.VictoryPose, "victorypose" }, { EEmote.VictoryPose, "victorypose" },
{ EEmote.Comfort, "comfort" },
}; };
} }

View File

@ -33,4 +33,5 @@ public enum EEmote
Uchiwasshoi = 278, Uchiwasshoi = 278,
Clap = 7, Clap = 7,
VictoryPose = 122, VictoryPose = 122,
Comfort = 9,
} }