Skip to content

Commit

Permalink
Added display of environmental effect thresholds.
Browse files Browse the repository at this point in the history
  • Loading branch information
MauveCloud committed Nov 2, 2014
1 parent 16f43ef commit e67eb12
Show file tree
Hide file tree
Showing 4 changed files with 296 additions and 243 deletions.
2 changes: 0 additions & 2 deletions nbproject/private/private.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
<open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
<group>
<file>file:/E:/GitHub/Ic2ExpReactorPlanner/src/Ic2ExpReactorPlanner/ReactorPlannerFrame.java</file>
<file>file:/E:/GitHub/Ic2ExpReactorPlanner/src/Ic2ExpReactorPlanner/Reactor.java</file>
<file>file:/E:/GitHub/Ic2ExpReactorPlanner/src/Ic2ExpReactorPlanner/Simulator.java</file>
</group>
</open-files>
</project-private>
3 changes: 3 additions & 0 deletions src/Ic2ExpReactorPlanner/Reactor.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ public void setComponentAt(int row, int column, ReactorComponent component) {
public void clearGrid() {
for (int row = 0; row < grid.length; row++) {
for (int col = 0; col < grid[row].length; col++) {
if (grid[row][col] != null) {
grid[row][col].removeFromReactor();
}
grid[row][col] = null;
}
}
Expand Down
Loading

0 comments on commit e67eb12

Please sign in to comment.