fix: actually add values

This commit is contained in:
Kaz Wolfe 2025-03-23 18:45:15 -07:00
parent aaa3e33a8b
commit 8939cac80f
No known key found for this signature in database
GPG key ID: 258813F53A16EBB4

View file

@ -9,25 +9,25 @@ public enum PluginLoadReason
/// <summary> /// <summary>
/// We don't know why this plugin was loaded. /// We don't know why this plugin was loaded.
/// </summary> /// </summary>
Unknown, Unknown = 1 << 0,
/// <summary> /// <summary>
/// This plugin was loaded because it was installed with the plugin installer. /// This plugin was loaded because it was installed with the plugin installer.
/// </summary> /// </summary>
Installer, Installer = 1 << 1,
/// <summary> /// <summary>
/// This plugin was loaded because it was just updated. /// This plugin was loaded because it was just updated.
/// </summary> /// </summary>
Update, Update = 1 << 2,
/// <summary> /// <summary>
/// This plugin was loaded because it was told to reload. /// This plugin was loaded because it was told to reload.
/// </summary> /// </summary>
Reload, Reload = 1 << 3,
/// <summary> /// <summary>
/// This plugin was loaded because the game was started or Dalamud was reinjected. /// This plugin was loaded because the game was started or Dalamud was reinjected.
/// </summary> /// </summary>
Boot, Boot = 1 << 4,
} }