Bugfixes
This commit is contained in:
Binary file not shown.
@@ -126,7 +126,7 @@ public abstract class UnlockableContent extends MappableContent{
|
|||||||
}
|
}
|
||||||
|
|
||||||
public boolean unlocked(){
|
public boolean unlocked(){
|
||||||
if(net != null && net.client()) return state.rules.researched.contains(name);
|
if(net != null && net.client()) return alwaysUnlocked || state.rules.researched.contains(name);
|
||||||
return unlocked || alwaysUnlocked;
|
return unlocked || alwaysUnlocked;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
6
core/src/mindustry/net/ServerGroup.java
Normal file
6
core/src/mindustry/net/ServerGroup.java
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
package mindustry.net;
|
||||||
|
|
||||||
|
public class ServerGroup{
|
||||||
|
public String[] addresses;
|
||||||
|
public String name;
|
||||||
|
}
|
||||||
@@ -42,7 +42,7 @@ public class Conveyor extends Block implements Autotiler{
|
|||||||
conveyorPlacement = true;
|
conveyorPlacement = true;
|
||||||
|
|
||||||
ambientSound = Sounds.conveyor;
|
ambientSound = Sounds.conveyor;
|
||||||
ambientSoundVolume = 0.002f;
|
ambientSoundVolume = 0.0015f;
|
||||||
unloadable = false;
|
unloadable = false;
|
||||||
noUpdateDisabled = false;
|
noUpdateDisabled = false;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ import mindustry.net.*;
|
|||||||
import mindustry.ui.*;
|
import mindustry.ui.*;
|
||||||
import org.robovm.apple.coregraphics.*;
|
import org.robovm.apple.coregraphics.*;
|
||||||
import org.robovm.apple.foundation.*;
|
import org.robovm.apple.foundation.*;
|
||||||
|
import org.robovm.apple.glkit.*;
|
||||||
import org.robovm.apple.uikit.*;
|
import org.robovm.apple.uikit.*;
|
||||||
import org.robovm.objc.block.*;
|
import org.robovm.objc.block.*;
|
||||||
|
|
||||||
@@ -173,7 +174,7 @@ public class IOSLauncher extends IOSApplication.Delegate{
|
|||||||
UINavigationController.attemptRotationToDeviceOrientation();
|
UINavigationController.attemptRotationToDeviceOrientation();
|
||||||
}
|
}
|
||||||
}, new IOSApplicationConfiguration(){{
|
}, new IOSApplicationConfiguration(){{
|
||||||
|
stencilFormat = GLKViewDrawableStencilFormat._8;
|
||||||
}});
|
}});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user