diff --git a/core/src/mindustry/entities/EntityGroup.java b/core/src/mindustry/entities/EntityGroup.java index ad97cb93b5..d4079371cc 100644 --- a/core/src/mindustry/entities/EntityGroup.java +++ b/core/src/mindustry/entities/EntityGroup.java @@ -84,6 +84,10 @@ public class EntityGroup implements Iterable{ } } + public Seq copy(){ + return copy(new Seq<>()); + } + public Seq copy(Seq arr){ arr.addAll(array); return arr;