Pathfinder error fix

This commit is contained in:
Anuken 2024-05-07 13:31:39 -04:00
parent abf3111bdc
commit 251e5cc3e7

View File

@ -455,7 +455,9 @@ public class ControlPathfinder implements Runnable{
}else{
//reset data
for(var p : cluster.portals){
p.clear();
if(p != null){
p.clear();
}
}
}