mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-02 08:39:49 +01:00
A little more cleanup.
This commit is contained in:
parent
e41ab3ac18
commit
78b8ac663e
@ -56,12 +56,12 @@ public class Archery {
|
||||
* @param entity The entity hit by the arrows
|
||||
*/
|
||||
public static void arrowRetrievalCheck(LivingEntity livingEntity) {
|
||||
for (Iterator<TrackedEntity> it = trackedEntities.iterator() ; it.hasNext() ; ) {
|
||||
TrackedEntity trackedEntity = it.next();
|
||||
for (Iterator<TrackedEntity> entityIterator = trackedEntities.iterator(); entityIterator.hasNext(); ) {
|
||||
TrackedEntity trackedEntity = entityIterator.next();
|
||||
|
||||
if (trackedEntity.getLivingEntity() == livingEntity) {
|
||||
if (trackedEntity.getLivingEntity().getEntityId() == livingEntity.getEntityId()) {
|
||||
Misc.dropItems(livingEntity.getLocation(), new ItemStack(Material.ARROW), trackedEntity.getArrowCount());
|
||||
it.remove();
|
||||
entityIterator.remove();
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
@ -404,7 +404,7 @@ public class Fishing {
|
||||
break;
|
||||
|
||||
case SQUID:
|
||||
ItemStack item = new ItemStack(Material.INK_SACK, 1, (short) 0);
|
||||
ItemStack item = new ItemStack(Material.INK_SACK, 1);
|
||||
item.setData(new MaterialData(Material.INK_SACK, DyeColor.BLACK.getDyeData()));
|
||||
|
||||
Misc.dropItem(location, item);
|
||||
|
Loading…
Reference in New Issue
Block a user