slowed meteors

This commit is contained in:
Cheese 2015-12-07 21:56:00 +11:00
parent 1fe6b5489a
commit a39b11ce67

View File

@ -73,7 +73,7 @@ import org.bukkit.util.Vector;
public class SnowFight extends TeamGame
{
private long _meteorTime = 240000;
private long _meteorTime = 360000;
private boolean _meteors = false;
private HashSet<FallingBlock> _meteorSet = new HashSet<FallingBlock>();
@ -316,7 +316,7 @@ public class SnowFight extends TeamGame
@EventHandler
public void meteorSpawn(UpdateEvent event)
{
if(event.getType() != UpdateType.FAST)
if(event.getType() != UpdateType.SEC)
return;
if (!IsLive())