mirror of
https://e.coding.net/circlecloud/Soulbound.git
synced 2024-11-22 01:49:09 +00:00
add lose file...
Signed-off-by: j502647092 <jtb1@163.com>
This commit is contained in:
parent
efd9e1515b
commit
ae50ac1251
@ -0,0 +1,40 @@
|
|||||||
|
package com.me.tft_02.soulbound.hooks;
|
||||||
|
|
||||||
|
//import me.ThaH3lper.com.Api.BossDeathEvent;
|
||||||
|
|
||||||
|
import org.bukkit.event.Listener;
|
||||||
|
import org.bukkit.inventory.ItemStack;
|
||||||
|
|
||||||
|
import com.me.tft_02.soulbound.config.Config;
|
||||||
|
import com.me.tft_02.soulbound.util.ItemUtils;
|
||||||
|
|
||||||
|
public class EpicBossRecodedListener implements Listener {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check BossDeathEvent events.
|
||||||
|
*
|
||||||
|
* @param event The event to check
|
||||||
|
*/
|
||||||
|
/* @EventHandler(priority = EventPriority.HIGHEST, ignoreCancelled = true)
|
||||||
|
public void onBossDeath(BossDeathEvent event) {
|
||||||
|
if (event.getDrops().isEmpty()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (ItemStack itemStack : event.getDrops()) {
|
||||||
|
handleEpicBossItems(itemStack);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
public void handleEpicBossItems(ItemStack itemStack) {
|
||||||
|
if (Config.getInstance().getEBRBindOnEquip() && ItemUtils.isEquipable(itemStack)) {
|
||||||
|
ItemUtils.boeItem(itemStack);
|
||||||
|
}
|
||||||
|
else if (Config.getInstance().getEBRBindOnPickup()) {
|
||||||
|
ItemUtils.bopItem(itemStack);
|
||||||
|
}
|
||||||
|
else if (Config.getInstance().getEBRBindOnUse()) {
|
||||||
|
ItemUtils.bouItem(itemStack);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user