fixed bug when deleting tiles

This commit is contained in:
Stephan Richter
2020-12-04 15:20:31 +01:00
parent 6ce8fa1693
commit 35c0666ab2
40 changed files with 50 additions and 107 deletions

View File

@@ -71,7 +71,7 @@ public class ConditionalAction extends ActionList {
@Override
public void removeChild(BaseClass child) {
conditions.remove(child);
actions.remove(child);
super.removeChild(child);
}
@Override