This commit is contained in:
Chiss 2013-11-25 10:23:10 +11:00
parent 276898dced
commit b941359840
1 changed files with 5 additions and 2 deletions

View File

@ -529,7 +529,7 @@ public class HungerGames extends SoloGame
public int RedMax()
{
return _maxSpreadRate;// + (24 - GetPlayers(true).size())*2;
return _maxSpreadRate + 100;// + (24 - GetPlayers(true).size())*2;
}
@EventHandler
@ -953,7 +953,10 @@ public class HungerGames extends SoloGame
{
if (_supplyCurrent == null)
{
_supplyCurrent = _supplyLocations.get(UtilMath.r(_supplyLocations.size()));
if (_supplyLocations.isEmpty())
return;
_supplyCurrent = _supplyLocations.remove(UtilMath.r(_supplyLocations.size()));
//Remove Prior
_supplyChests.remove(_supplyCurrent.getBlock().getRelative(BlockFace.UP));