increase packing restriction
This commit is contained in:
parent
e2ba51e92c
commit
e911935add
|
|
@ -173,8 +173,8 @@ elements.molten_rad_glass = {
|
||||||
//Seeds
|
//Seeds
|
||||||
elements.building_1_seed = {
|
elements.building_1_seed = {
|
||||||
tick: function(pixel) {
|
tick: function(pixel) {
|
||||||
for(cx = -3; cx <= 3; cx++) {
|
for(cx = -4; cx <= 4; cx++) {
|
||||||
for(cy = -3; cy <= 3; cy++) {
|
for(cy = -4; cy <= 4; cy++) {
|
||||||
if(cx === 0 && cy === 0) {
|
if(cx === 0 && cy === 0) {
|
||||||
continue;
|
continue;
|
||||||
};
|
};
|
||||||
|
|
@ -232,8 +232,8 @@ elements.building_1_seed = {
|
||||||
|
|
||||||
elements.building_2_seed = {
|
elements.building_2_seed = {
|
||||||
tick: function(pixel) {
|
tick: function(pixel) {
|
||||||
for(cx = -3; cx <= 3; cx++) {
|
for(cx = -4; cx <= 4; cx++) {
|
||||||
for(cy = -3; cy <= 3; cy++) {
|
for(cy = -4; cy <= 4; cy++) {
|
||||||
if(cx === 0 && cy === 0) {
|
if(cx === 0 && cy === 0) {
|
||||||
continue;
|
continue;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue