Skip to content
Snippets Groups Projects
Commit 06317c40 authored by sfphoton's avatar sfphoton
Browse files

Bugfix: no more infinite loop because of crates' notification

parent de195850
Branches own-vm
No related tags found
No related merge requests found
...@@ -59,7 +59,7 @@ public abstract class AbstractField { ...@@ -59,7 +59,7 @@ public abstract class AbstractField {
if(!isCorner) return; if(!isCorner) return;
for(AbstractField neighbor : neighbours.values()) { for(AbstractField neighbor : neighbours.values()) {
neighbor.setToCorner(); if(!neighbor.isCorner) neighbor.setToCorner();
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment