Skip to content

Commit

Permalink
Make ShopCraftHandler constructor public
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanmoffat committed Apr 3, 2022
1 parent 6aa0ff2 commit 499c27d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions EOLib/PacketHandlers/Interact/Shop/ShopCraftHandler.cs
Expand Up @@ -4,7 +4,6 @@
using EOLib.Net;
using EOLib.Net.Handlers;
using Optional.Collections;
using System.Collections.Generic;

namespace EOLib.PacketHandlers.Interact.Shop
{
Expand All @@ -18,9 +17,9 @@ public class ShopCraftHandler : InGameOnlyPacketHandler

public override PacketAction Action => PacketAction.Create;

protected ShopCraftHandler(IPlayerInfoProvider playerInfoProvider,
ICharacterRepository characterRepository,
ICharacterInventoryRepository characterInventoryRepository)
public ShopCraftHandler(IPlayerInfoProvider playerInfoProvider,
ICharacterRepository characterRepository,
ICharacterInventoryRepository characterInventoryRepository)
: base(playerInfoProvider)
{
_characterRepository = characterRepository;
Expand Down

0 comments on commit 499c27d

Please sign in to comment.