mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-07-14 01:37:36 +07:00
Removed unnecessary unit types
This commit is contained in:
@ -289,8 +289,8 @@ public class ApplicationTests{
|
||||
void buildingOverlap(){
|
||||
initBuilding();
|
||||
|
||||
Phantom d1 = (Phantom)UnitTypes.phantom.create(Team.sharded);
|
||||
Phantom d2 = (Phantom)UnitTypes.phantom.create(Team.sharded);
|
||||
BuilderDrone d1 = (BuilderDrone)UnitTypes.phantom.create(Team.sharded);
|
||||
BuilderDrone d2 = (BuilderDrone)UnitTypes.phantom.create(Team.sharded);
|
||||
|
||||
d1.set(10f, 20f);
|
||||
d2.set(10f, 20f);
|
||||
@ -311,8 +311,8 @@ public class ApplicationTests{
|
||||
void buildingDestruction(){
|
||||
initBuilding();
|
||||
|
||||
Phantom d1 = (Phantom)UnitTypes.phantom.create(Team.sharded);
|
||||
Phantom d2 = (Phantom)UnitTypes.phantom.create(Team.sharded);
|
||||
BuilderDrone d1 = (BuilderDrone)UnitTypes.phantom.create(Team.sharded);
|
||||
BuilderDrone d2 = (BuilderDrone)UnitTypes.phantom.create(Team.sharded);
|
||||
|
||||
d1.set(10f, 20f);
|
||||
d2.set(10f, 20f);
|
||||
|
Reference in New Issue
Block a user