Bug fixes
This commit is contained in:
parent
0472870e78
commit
9f8b119fb7
@ -83,11 +83,14 @@ public class Npc
|
|||||||
|
|
||||||
public void returnToPost()
|
public void returnToPost()
|
||||||
{
|
{
|
||||||
EntityCreature ec = ((CraftCreature) _entity).getHandle();
|
if (_entity instanceof CraftCreature)
|
||||||
|
{
|
||||||
|
EntityCreature ec = ((CraftCreature) _entity).getHandle();
|
||||||
|
|
||||||
ec.getNavigation().a(getLocation().getX(), getLocation().getY(), getLocation().getZ(), .8f);
|
ec.getNavigation().a(getLocation().getX(), getLocation().getY(), getLocation().getZ(), .8f);
|
||||||
|
|
||||||
_returning = true;
|
_returning = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isReturning()
|
public boolean isReturning()
|
||||||
@ -95,13 +98,16 @@ public class Npc
|
|||||||
return _returning;
|
return _returning;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void clearGoals(Entity entity)
|
public void clearGoals()
|
||||||
{
|
{
|
||||||
_returning = false;
|
if (_entity instanceof CraftCreature)
|
||||||
|
{
|
||||||
|
_returning = false;
|
||||||
|
|
||||||
Location entityLocation = entity.getLocation();
|
Location entityLocation = _entity.getLocation();
|
||||||
EntityCreature ec = ((CraftCreature) entity).getHandle();
|
EntityCreature ec = ((CraftCreature) _entity).getHandle();
|
||||||
ec.getNavigation().a(entityLocation.getX(), entityLocation.getY(), entityLocation.getZ(), .8f);
|
ec.getNavigation().a(entityLocation.getX(), entityLocation.getY(), entityLocation.getZ(), .8f);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public NpcManager getNpcManager()
|
public NpcManager getNpcManager()
|
||||||
|
@ -430,15 +430,15 @@ public class NpcManager extends MiniPlugin
|
|||||||
entity.setVelocity(new Vector(0, 0, 0));
|
entity.setVelocity(new Vector(0, 0, 0));
|
||||||
npc.setFailedAttempts(0);
|
npc.setFailedAttempts(0);
|
||||||
}
|
}
|
||||||
else if (!npc.isInRadius(entity.getLocation()))
|
else if (!npc.isInRadius(entity.getLocation()) && npc.getEntity() instanceof CraftCreature)
|
||||||
{
|
{
|
||||||
npc.returnToPost();
|
npc.returnToPost();
|
||||||
npc.incrementFailedAttempts();
|
npc.incrementFailedAttempts();
|
||||||
}
|
}
|
||||||
else
|
else if (npc.getEntity() instanceof CraftCreature)
|
||||||
{
|
{
|
||||||
if (npc.isReturning())
|
if (npc.isReturning())
|
||||||
npc.clearGoals(entity);
|
npc.clearGoals();
|
||||||
|
|
||||||
npc.setFailedAttempts(0);
|
npc.setFailedAttempts(0);
|
||||||
}
|
}
|
||||||
|
@ -245,7 +245,7 @@ public class ServerNpcPage extends ShopPageBase<ServerManager, ServerNpcShop> im
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
AddButton(40, new ShopItem(Material.GOLD_BLOCK, C.cAqua + yellowCount++ + " Games In Progress", new String[]{MESSAGE_SPECTATE}, yellowCount > 64 ? 1 : yellowCount, false), new SingleButton()
|
AddButton(40, new ShopItem(Material.GOLD_BLOCK, C.cAqua + yellowCount + " Game" + (yellowCount == 1 ? "" : "s") + " In Progress", new String[]{MESSAGE_SPECTATE}, yellowCount > 64 ? 1 : yellowCount, false), new SingleButton()
|
||||||
{
|
{
|
||||||
@Override
|
@Override
|
||||||
public void Clicked(Player player)
|
public void Clicked(Player player)
|
||||||
|
@ -26,7 +26,7 @@ public class KitSheepPig extends Kit
|
|||||||
{
|
{
|
||||||
public KitSheepPig(ArcadeManager manager)
|
public KitSheepPig(ArcadeManager manager)
|
||||||
{
|
{
|
||||||
super(manager, "'Pig'", KitAvailability.Green, 5000,
|
super(manager, "Pig", KitAvailability.Green, 5000,
|
||||||
|
|
||||||
new String[]
|
new String[]
|
||||||
{
|
{
|
||||||
|
@ -175,7 +175,7 @@ public class PerkBomber extends Perk
|
|||||||
@EventHandler
|
@EventHandler
|
||||||
public void ExplosionPrime(ExplosionPrimeEvent event)
|
public void ExplosionPrime(ExplosionPrimeEvent event)
|
||||||
{
|
{
|
||||||
Player player = _tntMap.remove(event.getEntity());
|
Player player = _tntMap.get(event.getEntity());
|
||||||
if (player != null)
|
if (player != null)
|
||||||
{
|
{
|
||||||
for (Player other : UtilPlayer.getNearby(event.getEntity().getLocation(), 14))
|
for (Player other : UtilPlayer.getNearby(event.getEntity().getLocation(), 14))
|
||||||
@ -185,7 +185,7 @@ public class PerkBomber extends Perk
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)
|
@EventHandler(priority = EventPriority.LOWEST, ignoreCancelled = true)
|
||||||
public void onEntityExplode(EntityExplodeEvent event)
|
public void onEntityExplode(EntityExplodeEvent event)
|
||||||
{
|
{
|
||||||
Player player = _tntMap.remove(event.getEntity());
|
Player player = _tntMap.remove(event.getEntity());
|
||||||
@ -198,16 +198,9 @@ public class PerkBomber extends Perk
|
|||||||
|
|
||||||
if (block.getType() == Material.DIAMOND_ORE)
|
if (block.getType() == Material.DIAMOND_ORE)
|
||||||
{
|
{
|
||||||
|
Bukkit.getPluginManager().callEvent(new BomberExplodeDiamondBlock(player, block));
|
||||||
|
block.breakNaturally();
|
||||||
it.remove();
|
it.remove();
|
||||||
|
|
||||||
if (Math.random() < event.getYield())
|
|
||||||
{
|
|
||||||
block.breakNaturally();
|
|
||||||
|
|
||||||
Bukkit.getPluginManager().callEvent(new BomberExplodeDiamondBlock(player, block));
|
|
||||||
}
|
|
||||||
else
|
|
||||||
block.setType(Material.AIR);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -24,7 +24,7 @@ public class KaboomStatTracker extends StatTracker<MineStrike>
|
|||||||
{
|
{
|
||||||
for (Player player : event.getDamagedPlayers())
|
for (Player player : event.getDamagedPlayers())
|
||||||
{
|
{
|
||||||
if (!player.isDead())
|
if (player.getHealth() != player.getMaxHealth())
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user