From 7e3d66aa9c44e7ab385aa4eefb08bcaf316adea3 Mon Sep 17 00:00:00 2001 From: ryanhamshire Date: Tue, 5 Jul 2016 14:49:04 -0700 Subject: [PATCH] Fix: Duplication in siege mode. --- src/me/ryanhamshire/GriefPrevention/DataStore.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/me/ryanhamshire/GriefPrevention/DataStore.java b/src/me/ryanhamshire/GriefPrevention/DataStore.java index cb35497..da6b800 100644 --- a/src/me/ryanhamshire/GriefPrevention/DataStore.java +++ b/src/me/ryanhamshire/GriefPrevention/DataStore.java @@ -1067,6 +1067,8 @@ public abstract class DataStore winnerLocation.getWorld().dropItemNaturally(winnerLocation, wontFitItems.get(key)); } } + + drops.clear(); } } }