Merge pull request #4799 from deathbeam/fix-raids-double-add

Fix adding of raid timer multiple times in Raids
This commit is contained in:
Tomas Slusny
2018-08-11 11:56:59 +02:00
committed by GitHub

View File

@@ -321,7 +321,10 @@ public class RaidsPlugin extends Plugin
if (inRaidChambers && config.raidsTimer())
{
infoBoxManager.addInfoBox(timer);
if (!infoBoxManager.getInfoBoxes().contains(timer))
{
infoBoxManager.addInfoBox(timer);
}
}
else
{