Do install after resolve of oceans.

This commit is contained in:
Willem Cazander 2022-03-03 01:41:24 +01:00
parent b619004477
commit 3e782452aa
3 changed files with 49 additions and 23 deletions

View file

@ -28,16 +28,12 @@ import love.distributedrebirth.warpme.ship.WaterShipOcean;
public class GDXAppVrGem4Activator implements BundleActivator {
// private static final Logger LOG = LoggerFactory.getLogger(GDXAppVrGem4Activator.class);
@Override
public void stop(final BundleContext context) {
}
@Override
public void start(final BundleContext context) {
// LOG.info("GDXAppVrGem4Activator started");
try {
Thread.sleep(2000);
} catch (InterruptedException ignored) {
@ -170,13 +166,14 @@ public class GDXAppVrGem4Activator implements BundleActivator {
} else {
bootScreen.bootLine("vrGEM4: chains resolved.");
try {
Thread.sleep(6000);
Thread.sleep(2000);
} catch (InterruptedException ignored) {
}
Gdx.app.postRunnable(new Runnable() {
@Override
public void run() {
terminal.selectScreen(ScreenDesktop1.class);
terminal.disposeScreen(bootScreen);
}
});
}