[fix] Remove excess emotions (ReFix) (#19)

This commit is contained in:
Kotovskiy34
2023-05-05 15:23:39 +03:00
committed by Aviu00
parent 0bd2ad5e38
commit 5a039bb558
3 changed files with 31 additions and 16 deletions

View File

@@ -35,12 +35,16 @@ public sealed partial class EmotePrototype : IPrototype
[DataField("chatTriggers")]
public HashSet<string>? ChatTriggers = new();
/// <summary>
/// <summary> White Dream EDIT Start
/// Текст для кнопки в эмоут меню.
/// Бля ну или как это описать, вы поняли короче. ¯\_(ツ)_/¯
/// </summary>
[DataField("buttonText")]
public string ButtonText { get; } = "Unknown";
[DataField("allowMenu")]
public bool AllowToEmotionsMenu { get; } = false;
// White Dream EDIT end
}
/// <summary>
@@ -53,7 +57,6 @@ public enum EmoteCategory : byte
{
Invalid = 0,
Vocal = 1 << 0,
Gesture = 1 << 1,
General = byte.MaxValue,
White = byte.MaxValue
Gesture = 1 << 1, // White Dream EDIT
General = byte.MaxValue
}