Travis testing
This commit is contained in:
@@ -10,6 +10,8 @@ script:
|
|||||||
- git clone --depth=1 --branch=master https://github.com/Anuken/MindustryBuilds ../MindustryBuilds
|
- git clone --depth=1 --branch=master https://github.com/Anuken/MindustryBuilds ../MindustryBuilds
|
||||||
- cd ../MindustryBuilds
|
- cd ../MindustryBuilds
|
||||||
- echo ${TRAVIS_BUILD_NUMBER} > version.txt
|
- echo ${TRAVIS_BUILD_NUMBER} > version.txt
|
||||||
|
- TEST_TAG=v9999
|
||||||
|
- echo versionName=4-fdroid-${TEST_TAG}$'\n'versionCode=${TEST_TAG:1} > version_fdroid.txt
|
||||||
- git add .
|
- git add .
|
||||||
- git commit -m "Updating to build ${TRAVIS_BUILD_NUMBER}"
|
- git commit -m "Updating to build ${TRAVIS_BUILD_NUMBER}"
|
||||||
- git tag ${TRAVIS_BUILD_NUMBER}
|
- git tag ${TRAVIS_BUILD_NUMBER}
|
||||||
|
|||||||
Binary file not shown.
@@ -267,7 +267,7 @@ public class Renderer implements ApplicationListener{
|
|||||||
}
|
}
|
||||||
|
|
||||||
overlays.drawBottom();
|
overlays.drawBottom();
|
||||||
playerGroup.draw(p -> true, Player::drawBuildRequests);
|
playerGroup.draw(p -> p.isLocal, Player::drawBuildRequests);
|
||||||
|
|
||||||
if(shieldGroup.countInBounds() > 0){
|
if(shieldGroup.countInBounds() > 0){
|
||||||
if(settings.getBool("animatedshields") && Shaders.shield != null){
|
if(settings.getBool("animatedshields") && Shaders.shield != null){
|
||||||
|
|||||||
@@ -11,7 +11,6 @@ import io.anuke.mindustry.entities.type.*;
|
|||||||
import io.anuke.mindustry.game.EventType.*;
|
import io.anuke.mindustry.game.EventType.*;
|
||||||
import io.anuke.mindustry.gen.*;
|
import io.anuke.mindustry.gen.*;
|
||||||
import io.anuke.mindustry.graphics.*;
|
import io.anuke.mindustry.graphics.*;
|
||||||
import io.anuke.mindustry.net.Net;
|
|
||||||
import io.anuke.mindustry.type.*;
|
import io.anuke.mindustry.type.*;
|
||||||
import io.anuke.mindustry.world.*;
|
import io.anuke.mindustry.world.*;
|
||||||
import io.anuke.mindustry.world.blocks.*;
|
import io.anuke.mindustry.world.blocks.*;
|
||||||
@@ -138,10 +137,10 @@ public class CoreBlock extends StorageBlock{
|
|||||||
}
|
}
|
||||||
|
|
||||||
public class CoreEntity extends TileEntity implements SpawnerTrait{
|
public class CoreEntity extends TileEntity implements SpawnerTrait{
|
||||||
public Player spawnPlayer;
|
protected Player spawnPlayer;
|
||||||
float progress;
|
protected float progress;
|
||||||
float time;
|
protected float time;
|
||||||
float heat;
|
protected float heat;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean hasUnit(Unit unit){
|
public boolean hasUnit(Unit unit){
|
||||||
|
|||||||
Reference in New Issue
Block a user