3.0.0-SNAPSHOT-U14

Added some to-do's, and fixed the error with BossAPI
This commit is contained in:
AMinecraftDev 2018-06-28 21:14:32 +08:00
parent 5b3d99152c
commit 3c98256356
3 changed files with 7 additions and 15 deletions

View File

@ -26,22 +26,12 @@ public class BossAPI {
MessagesElement messagesElement = new MessagesElement();
CommandsElement commandsElement = new CommandsElement();
EntityTypeUtil entityTypeUtil = EntityTypeUtil.get(entityTypeInput);
if(entityTypeUtil == null) {
try {
} catch (Exception ex) {
}
EntityType entityType = EntityType.valueOf(entityTypeInput.toUpperCase());
if(entityType == null) {
}
}
//TODO: Set the entityType to said entityTypeInput
BossEntity bossEntity = new BossEntity(true, null, mainStatsElement, equipmentElement, handsElement, potionEffectHolders, skillsElement, dropsElement, messagesElement, commandsElement);
return bossEntity;
}
}

View File

@ -13,6 +13,8 @@ import java.util.List;
* @author Charles Cullen
* @version 1.0.0
* @since 28-Jun-18
*
* TODO: Finish all the possible boss options.
*/
public enum EntityFinder {

View File

@ -19,7 +19,7 @@
</modules>
<properties>
<plugin.version>3.0.0-SNAPSHOT-U13</plugin.version>
<plugin.version>3.0.0-SNAPSHOT-U14</plugin.version>
<plugin.name>CustomBosses</plugin.name>
<plugin.main>net.aminecraftdev.custombosses.CustomBosses</plugin.main>
<plugin.author>AMinecraftDev</plugin.author>