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>
/// We don't know why this plugin was loaded.
/// </summary>
Unknown,
Unknown = 1 << 0,
/// <summary>
/// This plugin was loaded because it was installed with the plugin installer.
/// </summary>
Installer,
Installer = 1 << 1,
/// <summary>
/// This plugin was loaded because it was just updated.
/// </summary>
Update,
Update = 1 << 2,
/// <summary>
/// This plugin was loaded because it was told to reload.
/// </summary>
Reload,
Reload = 1 << 3,
/// <summary>
/// This plugin was loaded because the game was started or Dalamud was reinjected.
/// </summary>
Boot,
Boot = 1 << 4,
}