mirror of
https://github.com/Anuken/Mindustry.git
synced 2026-01-27 06:51:30 -08:00
Removed references to "phantom"
This commit is contained in:
parent
403597f860
commit
9b285e6b21
5 changed files with 14 additions and 10 deletions
|
|
@ -481,8 +481,8 @@ public class ApplicationTests{
|
|||
void buildingOverlap(){
|
||||
initBuilding();
|
||||
|
||||
Builderc d1 = (Builderc)UnitTypes.phantom.create(Team.sharded);
|
||||
Builderc d2 = (Builderc)UnitTypes.phantom.create(Team.sharded);
|
||||
Builderc d1 = (Builderc)UnitTypes.mono.create(Team.sharded);
|
||||
Builderc d2 = (Builderc)UnitTypes.mono.create(Team.sharded);
|
||||
|
||||
//infinite build range
|
||||
state.rules.editor = true;
|
||||
|
|
@ -508,8 +508,8 @@ public class ApplicationTests{
|
|||
void buildingDestruction(){
|
||||
initBuilding();
|
||||
|
||||
Builderc d1 = (Builderc)UnitTypes.phantom.create(Team.sharded);
|
||||
Builderc d2 = (Builderc)UnitTypes.phantom.create(Team.sharded);
|
||||
Builderc d1 = (Builderc)UnitTypes.mono.create(Team.sharded);
|
||||
Builderc d2 = (Builderc)UnitTypes.mono.create(Team.sharded);
|
||||
|
||||
d1.set(10f, 20f);
|
||||
d2.set(10f, 20f);
|
||||
|
|
@ -591,7 +591,7 @@ public class ApplicationTests{
|
|||
}
|
||||
|
||||
void depositTest(Block block, Item item){
|
||||
Unit unit = UnitTypes.spirit.create(Team.derelict);
|
||||
Unit unit = UnitTypes.mono.create(Team.derelict);
|
||||
Tile tile = new Tile(0, 0, Blocks.air, Blocks.air, block);
|
||||
int capacity = tile.block().itemCapacity;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue