Explorar el Código

Conway4 needed to change for the new patch.clone()

master
Josh Hofing hace 11 años
padre
commit
0f3a74d974
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/rules/Conway4.java

+ 1
- 1
src/rules/Conway4.java Ver fichero

@@ -15,7 +15,7 @@ public class Conway4 extends RuleSet {
int numAlive = 0;
for (Patch p : neighbors)
if (p.getState() == 1) numAlive++;
Patch p = g.getPatch(i,j).clone();
Patch p = g.getPatch(i,j).clone(newGrid);
if (numAlive < 2) {
p.setState(0); //Dies by underpopulation
}


Cargando…
Cancelar
Guardar