parent
0d26d6c65b
commit
208c8f0c72
|
|
@ -558,9 +558,9 @@ public abstract class DataStore
|
|||
synchronized void deleteClaim(Claim claim, boolean fireEvent, boolean releasePets)
|
||||
{
|
||||
//delete any children
|
||||
for(int j = 0; j < claim.children.size(); j++)
|
||||
for(int j = 1; (j - 1) < claim.children.size(); j++)
|
||||
{
|
||||
this.deleteClaim(claim.children.get(j--), true);
|
||||
this.deleteClaim(claim.children.get(j-1), true);
|
||||
}
|
||||
|
||||
//subdivisions must also be removed from the parent claim child list
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user