Skip to content

Commit

Permalink
fixup! fixup! (C) 换图重置平均变化量 null检查
Browse files Browse the repository at this point in the history
  • Loading branch information
MinRi2 committed Apr 20, 2024
1 parent 79e2e61 commit f8562b1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/src/mindustry/arcModule/ui/RCoreItemsDisplay.java
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ public void resetUsed(){
usedUnits.clear();

for(WindowedMean mean : itemMeans){
mean.clear();
if(mean != null){
mean.clear();
}
}
}

Expand Down

0 comments on commit f8562b1

Please sign in to comment.