Minestrike Update

This commit is contained in:
Chiss 2014-09-03 12:38:44 +10:00
parent 1dec79c0fa
commit 58f98881f2
1 changed files with 4 additions and 21 deletions

View File

@ -821,8 +821,6 @@ public class MineStrike extends TeamGame
if (bullet == null)
return;
long start = System.currentTimeMillis();
Location loc = bullet.Origin.clone();
HashSet<Player> hasPlayedFor = new HashSet<Player>();
@ -861,27 +859,8 @@ public class MineStrike extends TeamGame
//Move Closer
loc.add(UtilAlg.getTrajectory(loc, bulletEndLocation));
}
bullets++;
whizzTime += (System.currentTimeMillis() - start);
}
//XXX Debug
public int bullets = 0;
public long whizzTime = 0;
@EventHandler
public void debugWhizzTime(UpdateEvent event)
{
if (event.getType() != UpdateType.SLOWER)
return;
System.out.println("Bullets Fired: " + bullets);
System.out.println("Bullet Whizz Time: " + whizzTime);
bullets = 0;
whizzTime = 0;
}
@EventHandler(priority=EventPriority.HIGH)
public void damage(CustomDamageEvent event)
{
@ -1819,6 +1798,10 @@ public class MineStrike extends TeamGame
@EventHandler
public void incendiaryUpdate(UpdateEvent event)
{
if (event.getType() == UpdateType.TICK)
for (Player player : UtilServer.getPlayers())
player.setFireTicks(0);
if (event.getType() != UpdateType.SLOW)
return;