// // Licensed under the MIT License. See LICENSE file in the project root for full license information. // namespace MUnique.OpenMU.Persistence.Initialization.Updates; using System.Runtime.InteropServices; using MUnique.OpenMU.PlugIns; /// /// This update fixes event items that have DropsFromMonsters set to true, /// but should use dedicated DropItemGroups instead. /// [PlugIn] [Display(Name = PlugInName, Description = PlugInDescription)] [Guid("A8B5C2D1-3E4F-5A6B-7C8D-9E0F1A2B3C4D")] public class FixEventItemsDropFromMonstersUpdatePlugInSeason6 : FixEventItemsDropFromMonstersUpdatePlugInBase { /// /// The plug in name. /// internal const string PlugInName = "Fix Event Items DropsFromMonsters Season 6"; /// /// The plug in description. /// internal const string PlugInDescription = "This update fixes event items that have DropsFromMonsters set to true, causing them to drop at level 0 instead of using their dedicated DropItemGroups."; /// public override UpdateVersion Version => UpdateVersion.FixEventItemsDropFromMonstersSeason6; /// public override string DataInitializationKey => VersionSeasonSix.DataInitialization.Id; /// public override string Name => PlugInName; /// public override string Description => PlugInDescription; }