diff --git a/src/arcade/patch/agent/cell/PatchCellCART.java b/src/arcade/patch/agent/cell/PatchCellCART.java index 61540943..21bb96a8 100644 --- a/src/arcade/patch/agent/cell/PatchCellCART.java +++ b/src/arcade/patch/agent/cell/PatchCellCART.java @@ -231,8 +231,7 @@ public PatchCellTissue bindTarget( // Within maximum search vicinity, search for neighboring cells to bind to for (int i = 0; i < maxSearch; i++) { Cell cell = (Cell) allAgents.get(i); - if (cell.getState() != State.APOPTOTIC - && cell.getState() != State.NECROTIC) { + if (cell.getState() != State.APOPTOTIC && cell.getState() != State.NECROTIC) { PatchCellTissue tissueCell = (PatchCellTissue) cell; double cARAntigens = tissueCell.carAntigens; double selfTargets = tissueCell.selfTargets;