1
0
Fork 0

Add /lookout as usable emote

master
Liza 2024-07-18 18:38:23 +02:00
parent 6bd5b21ad4
commit ec839c15d3
Signed by: liza
GPG Key ID: 7199F8D727D55F67
3 changed files with 4 additions and 1 deletions

View File

@ -501,7 +501,8 @@
"imperialsalute",
"pet",
"dance",
"respect"
"respect",
"lookout"
]
}
}

View File

@ -25,5 +25,6 @@ public sealed class EmoteConverter() : EnumConverter<EEmote>(Values)
{ EEmote.Pet, "pet" },
{ EEmote.Dance, "dance" },
{ EEmote.Respect, "respect" },
{ EEmote.Lookout, "lookout" },
};
}

View File

@ -27,4 +27,5 @@ public enum EEmote
Pet = 105,
Dance = 11,
Respect = 140,
Lookout = 22,
}