Give up trying to fix chest location stuff, arcade is a fickle creature

This commit is contained in:
Spencer 2017-12-31 22:14:59 -05:00 committed by Alexander Meech
parent 9c73ca7f75
commit 11e6660809

View File

@ -225,13 +225,6 @@ public class PerkDestructor extends Perk
{
continue;
}
// Custom locs with id 54 = chests in BR
// Skip all mid chests from being affected
if (Manager.GetGame().WorldData.GetCustomLocs("54").contains(block.getLocation()))
{
continue;
}
//Event
PerkDestructorBlockEvent blockEvent = new PerkDestructorBlockEvent(player, block);
@ -250,7 +243,7 @@ public class PerkDestructor extends Perk
proj.getWorld().playSound(proj.getLocation(), Sound.EXPLODE, 1f, 0.5f);
proj.getWorld().playSound(proj.getLocation(), Sound.FIREWORK_TWINKLE, 2f, 0.5f);
}
@SuppressWarnings("deprecation")
@EventHandler
public void fall(UpdateEvent event)