Skip to content

Commit

Permalink
Fixed plugin names
Browse files Browse the repository at this point in the history
  • Loading branch information
sven-n committed Jan 10, 2024
1 parent 796d3ec commit a8703d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace MUnique.OpenMU.GameLogic.PlayerActions.ItemConsumeActions;
/// Consume handler for upgrading items up to level 6 using the Jewel of Bless.
/// </summary>
[Guid("E95A0292-B3B4-4E8C-AC5A-7F3DB4F01A37")]
[PlugIn(nameof(AlcoholConsumeHandlerPlugIn), "Plugin which handles the jewel of bless consumption.")]
[PlugIn(nameof(BlessJewelConsumeHandlerPlugIn), "Plugin which handles the jewel of bless consumption.")]
public class BlessJewelConsumeHandlerPlugIn : ItemModifyConsumeHandlerPlugIn
{
/// <inheritdoc />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace MUnique.OpenMU.GameLogic.PlayerActions.ItemConsumeActions;
/// Implementation of a consume handler for fruits.
/// </summary>
[Guid("151E4292-96FE-4FF5-A51B-060B510D3DF8")]
[PlugIn(nameof(AlcoholConsumeHandlerPlugIn), "Plugin which handles the fruit consumption.")]
[PlugIn(nameof(FruitConsumeHandlerPlugIn), "Plugin which handles the fruit consumption.")]
public class FruitConsumeHandlerPlugIn : BaseConsumeHandlerPlugIn
{
/// <inheritdoc />
Expand Down

0 comments on commit a8703d1

Please sign in to comment.