cpu fix ;o

This commit is contained in:
Chiss 2013-10-27 06:21:43 +11:00
parent 3892cd13f7
commit 7948fa6f71
4 changed files with 4 additions and 4 deletions

View File

@ -44,7 +44,7 @@ public class Halloween extends SoloGame
private ArrayList<WaveBase> _waves;
private int _wave = 0;
private int _maxMobs = 100;
private int _maxMobs = 80;
private HashSet<CreatureBase> _mobs = new HashSet<CreatureBase>();
private PumpkinKing _king;

View File

@ -57,7 +57,7 @@ public class MobGiant extends CreatureBase<Giant>
if (event.getType() == UpdateType.TICK)
Move();
if (event.getType() == UpdateType.FAST)
if (event.getType() == UpdateType.SEC)
Destroy();
}

View File

@ -47,7 +47,7 @@ public class MobSpiderLeaper extends CreatureBase<CaveSpider>
@Override
public void Update(UpdateEvent event)
{
if (event.getType() == UpdateType.FAST)
if (event.getType() == UpdateType.SLOW)
Move();
if (event.getType() == UpdateType.SEC)

View File

@ -46,7 +46,7 @@ public class MobSpiderWebber extends CreatureBase<Zombie>
@Override
public void Update(UpdateEvent event)
{
if (event.getType() == UpdateType.FAST)
if (event.getType() == UpdateType.SLOW)
Move();
if (event.getType() == UpdateType.SLOW)