diff --git a/Meteo_Engine.jar b/Meteo_Engine.jar index c7d6804..40eda47 100644 Binary files a/Meteo_Engine.jar and b/Meteo_Engine.jar differ diff --git a/src/sig/BlockClump.java b/src/sig/BlockClump.java index c0afe0e..b21ead8 100644 --- a/src/sig/BlockClump.java +++ b/src/sig/BlockClump.java @@ -7,7 +7,7 @@ import java.util.List; import java.awt.Color; public class BlockClump { - private List blocks; + private List blocks = new ArrayList(); double x,y; //the lower-left origin of this block clump. Every block positions relative to this. double yspd; int[][] collisionColumnRanges; @@ -16,9 +16,7 @@ public class BlockClump { Positive is used for how much landing launch time before being split and falling.*/ public BlockClump(List blockList, double x, double y, double startspd, int width, int launched) { - this.blocks = new ArrayList(); - this.blocks.addAll(blockList); - collisionColumnRanges = new int[width][]; + collisionColumnRanges = new int[width][]; for (int i=0;i