mirror of
https://github.com/Anuken/Mindustry.git
synced 2026-01-27 06:51:30 -08:00
Removed unnecessary unit types
This commit is contained in:
parent
9e07b95223
commit
74dc31b10a
16 changed files with 132 additions and 143 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue