mirror of
https://github.com/songoda/EpicBosses.git
synced 2025-03-12 22:49:13 +01:00
1.0.0-SNAPSHOT-U124
+ Fixed error with the Pipeline
This commit is contained in:
parent
37a1b14aed
commit
ada32c1e9d
@ -13,6 +13,7 @@ import lombok.Setter;
|
||||
import org.bukkit.entity.LivingEntity;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @author Charles Cullen
|
||||
@ -27,6 +28,16 @@ public class CommandSkillElement implements ISkillHandler<CommandSkillElement> {
|
||||
this.commands = commandSkillElements;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean doesUseMultiplier() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Map<String, Class<?>> getOtherSkillData() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void castSkill(Skill skill, CommandSkillElement commandSkillElement, ActiveBossHolder activeBossHolder, List<LivingEntity> nearbyEntities) {
|
||||
List<SubCommandSkillElement> commandSkillElements = getCommands();
|
||||
|
@ -13,6 +13,7 @@ import lombok.Setter;
|
||||
import org.bukkit.entity.LivingEntity;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @author Charles Cullen
|
||||
@ -27,6 +28,16 @@ public class GroupSkillElement implements ISkillHandler<GroupSkillElement> {
|
||||
this.groupedSkills = groupedSkills;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean doesUseMultiplier() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Map<String, Class<?>> getOtherSkillData() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void castSkill(Skill skill, GroupSkillElement groupSkillElement, ActiveBossHolder activeBossHolder, List<LivingEntity> nearbyEntities) {
|
||||
List<String> currentGroupedSkills = getGroupedSkills();
|
||||
|
@ -12,6 +12,7 @@ import lombok.Setter;
|
||||
import org.bukkit.entity.LivingEntity;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @author Charles Cullen
|
||||
@ -29,6 +30,16 @@ public class PotionSkillElement implements ISkillHandler<PotionSkillElement> {
|
||||
this.potionEffectConverter = new PotionEffectConverter();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean doesUseMultiplier() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Map<String, Class<?>> getOtherSkillData() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void castSkill(Skill skill, PotionSkillElement customSkillElement, ActiveBossHolder activeBossHolder, List<LivingEntity> nearbyEntities) {
|
||||
List<PotionEffectHolder> potionElements = getPotions();
|
||||
|
2
pom.xml
2
pom.xml
@ -20,7 +20,7 @@
|
||||
|
||||
<properties>
|
||||
<!--<plugin.version>maven-version-number-SNAPSHOT-U90</plugin.version>-->
|
||||
<plugin.version>1.0.0-U123</plugin.version>
|
||||
<plugin.version>1.0.0-U124</plugin.version>
|
||||
<plugin.name>EpicBosses</plugin.name>
|
||||
<plugin.main>com.songoda.epicbosses.CustomBosses</plugin.main>
|
||||
<plugin.author>AMinecraftDev</plugin.author>
|
||||
|
Loading…
Reference in New Issue
Block a user