More cleanup
This commit is contained in:
		
							
								
								
									
										25
									
								
								pom.xml
									
									
									
									
									
								
							
							
						
						
									
										25
									
								
								pom.xml
									
									
									
									
									
								
							| @@ -2,7 +2,7 @@ | ||||
|          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||||
|          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
|     <modelVersion>4.0.0</modelVersion> | ||||
|     <groupId>nl.pim16aap2</groupId> | ||||
|     <groupId>nl.pim16aap2.armoredElytra</groupId> | ||||
|     <artifactId>ArmoredElytra</artifactId> | ||||
|     <version>3.0</version> | ||||
|  | ||||
| @@ -74,7 +74,7 @@ | ||||
|                     <relocations> | ||||
|                         <relocation> | ||||
|                             <pattern>org.bstats</pattern> | ||||
|                             <shadedPattern>nl.pim16aap2.armoredElytra</shadedPattern> | ||||
|                             <shadedPattern>nl.pim16aap2.armoredElytra.lib.bstats</shadedPattern> | ||||
|                         </relocation> | ||||
|                     </relocations> | ||||
|                 </configuration> | ||||
| @@ -96,27 +96,6 @@ | ||||
|                     <target>8</target> | ||||
|                 </configuration> | ||||
|             </plugin> | ||||
|             <plugin> | ||||
|                 <groupId>org.apache.maven.plugins</groupId> | ||||
|                 <artifactId>maven-antrun-plugin</artifactId> | ||||
|                 <version>1.8</version> | ||||
|                 <executions> | ||||
|                     <execution> | ||||
|                         <id>deploy-artifact</id> | ||||
|                         <phase>package</phase> | ||||
|                         <goals> | ||||
|                             <goal>run</goal> | ||||
|                         </goals> | ||||
|                         <configuration> | ||||
|                             <target> | ||||
|                                 <ant antfile="${basedir}/mover.xml"> | ||||
|                                     <target name="copyAll"/> | ||||
|                                 </ant> | ||||
|                             </target> | ||||
|                         </configuration> | ||||
|                     </execution> | ||||
|                 </executions> | ||||
|             </plugin> | ||||
|         </plugins> | ||||
|     </build> | ||||
| </project> | ||||
|   | ||||
| @@ -1,11 +1,11 @@ | ||||
| package nl.pim16aap2.armoredElytra.handlers; | ||||
|  | ||||
| import com.codingforcookies.armorequip.ArmorEquipEvent; | ||||
| import com.codingforcookies.armorequip.ArmorListener; | ||||
| import com.codingforcookies.armorequip.ArmorType; | ||||
| import com.codingforcookies.armorequip.DispenserArmorListener; | ||||
| import nl.pim16aap2.armoredElytra.ArmoredElytra; | ||||
| import nl.pim16aap2.armoredElytra.enchantment.EnchantmentManager; | ||||
| import nl.pim16aap2.armoredElytra.lib.armorequip.ArmorEquipEvent; | ||||
| import nl.pim16aap2.armoredElytra.lib.armorequip.ArmorListener; | ||||
| import nl.pim16aap2.armoredElytra.lib.armorequip.ArmorType; | ||||
| import nl.pim16aap2.armoredElytra.lib.armorequip.DispenserArmorListener; | ||||
| import nl.pim16aap2.armoredElytra.util.Action; | ||||
| import nl.pim16aap2.armoredElytra.util.AllowedToWearEnum; | ||||
| import nl.pim16aap2.armoredElytra.util.ArmorTier; | ||||
|   | ||||
| @@ -1,4 +1,4 @@ | ||||
| package com.codingforcookies.armorequip; | ||||
| package nl.pim16aap2.armoredElytra.lib.armorequip; | ||||
| 
 | ||||
| import org.bukkit.Material; | ||||
| import org.bukkit.entity.Player; | ||||
| @@ -86,8 +86,7 @@ public final class ArmorEquipEvent extends PlayerEvent implements Cancellable | ||||
|     } | ||||
| 
 | ||||
|     /** | ||||
|      * Returns the last equipped armor piece, could be a piece of armor, | ||||
|      * {@link Material#Air}, or null. | ||||
|      * Returns the last equipped armor piece, could be a piece of armor, {@link Material#Air}, or null. | ||||
|      */ | ||||
|     public final ItemStack getOldArmorPiece() | ||||
|     { | ||||
| @@ -100,8 +99,7 @@ public final class ArmorEquipEvent extends PlayerEvent implements Cancellable | ||||
|     } | ||||
| 
 | ||||
|     /** | ||||
|      * Returns the newly equipped armor, could be a piece of armor, | ||||
|      * {@link Material#Air}, or null. | ||||
|      * Returns the newly equipped armor, could be a piece of armor, {@link Material#Air}, or null. | ||||
|      */ | ||||
|     public final ItemStack getNewArmorPiece() | ||||
|     { | ||||
| @@ -136,18 +134,15 @@ public final class ArmorEquipEvent extends PlayerEvent implements Cancellable | ||||
|          */ | ||||
|         PICK_DROP, | ||||
|         /** | ||||
|          * When you right click an armor piece in the hotbar without the inventory open | ||||
|          * to equip. | ||||
|          * When you right click an armor piece in the hotbar without the inventory open to equip. | ||||
|          */ | ||||
|         HOTBAR, | ||||
|         /** | ||||
|          * When you press the hotbar slot number while hovering over the armor slot to | ||||
|          * equip or unequip | ||||
|          * When you press the hotbar slot number while hovering over the armor slot to equip or unequip | ||||
|          */ | ||||
|         HOTBAR_SWAP, | ||||
|         /** | ||||
|          * When in range of a dispenser that shoots an armor piece to equip.<br> | ||||
|          * Requires the spigot version to have | ||||
|          * When in range of a dispenser that shoots an armor piece to equip.<br> Requires the spigot version to have | ||||
|          * {@link org.bukkit.event.block.BlockDispenseArmorEvent} implemented. | ||||
|          */ | ||||
|         DISPENSER, | ||||
| @@ -158,6 +153,7 @@ public final class ArmorEquipEvent extends PlayerEvent implements Cancellable | ||||
|         /** | ||||
|          * When you die causing all armor to unequip | ||||
|          */ | ||||
|         DEATH,; | ||||
|         DEATH, | ||||
|         ; | ||||
|     } | ||||
| } | ||||
| @@ -1,6 +1,6 @@ | ||||
| package com.codingforcookies.armorequip; | ||||
| package nl.pim16aap2.armoredElytra.lib.armorequip; | ||||
| 
 | ||||
| import com.codingforcookies.armorequip.ArmorEquipEvent.EquipMethod; | ||||
| import nl.pim16aap2.armoredElytra.lib.armorequip.ArmorEquipEvent.EquipMethod; | ||||
| import org.bukkit.Bukkit; | ||||
| import org.bukkit.Material; | ||||
| import org.bukkit.entity.Player; | ||||
| @@ -1,4 +1,4 @@ | ||||
| package com.codingforcookies.armorequip; | ||||
| package nl.pim16aap2.armoredElytra.lib.armorequip; | ||||
| 
 | ||||
| import org.bukkit.Material; | ||||
| import org.bukkit.inventory.ItemStack; | ||||
| @@ -9,10 +9,10 @@ import org.bukkit.inventory.ItemStack; | ||||
|  */ | ||||
| public enum ArmorType | ||||
| { | ||||
|     HELMET (5), | ||||
|     CHESTPLATE (6), | ||||
|     LEGGINGS (7), | ||||
|     BOOTS (8); | ||||
|     HELMET(5), | ||||
|     CHESTPLATE(6), | ||||
|     LEGGINGS(7), | ||||
|     BOOTS(8); | ||||
| 
 | ||||
|     private final int slot; | ||||
| 
 | ||||
| @@ -1,4 +1,4 @@ | ||||
| package com.codingforcookies.armorequip; | ||||
| package nl.pim16aap2.armoredElytra.lib.armorequip; | ||||
| 
 | ||||
| import org.bukkit.Bukkit; | ||||
| import org.bukkit.entity.Player; | ||||
		Reference in New Issue
	
	Block a user
	 
				 Pim van der Loos
					Pim van der Loos