From 3a7e96f88da8b7d60da3a3d5d205cb4bb0e8981d Mon Sep 17 00:00:00 2001 From: Eric Date: Wed, 6 Jul 2016 17:21:11 +0200 Subject: [PATCH] Assign type in ShopBuySellEvent --- .../main/java/de/epiceric/shopchest/event/ShopBuySellEvent.java | 1 + 1 file changed, 1 insertion(+) diff --git a/ShopChest/src/main/java/de/epiceric/shopchest/event/ShopBuySellEvent.java b/ShopChest/src/main/java/de/epiceric/shopchest/event/ShopBuySellEvent.java index 9cfb7a9..aa7dc7e 100644 --- a/ShopChest/src/main/java/de/epiceric/shopchest/event/ShopBuySellEvent.java +++ b/ShopChest/src/main/java/de/epiceric/shopchest/event/ShopBuySellEvent.java @@ -13,6 +13,7 @@ public class ShopBuySellEvent extends ShopEvent implements Cancellable { public ShopBuySellEvent(Player player, Shop shop, Type type) { this.player = player; this.shop = shop; + this.type = type; } @Override