Updated uCore

This commit is contained in:
Anuken 2018-06-15 21:54:26 -04:00
parent eb94a4ee14
commit 6281826b92
2 changed files with 4 additions and 1 deletions

View File

@ -27,7 +27,7 @@ allprojects {
gdxVersion = '1.9.8'
roboVMVersion = '2.3.0'
aiVersion = '1.8.1'
uCoreVersion = 'b6d22d5'
uCoreVersion = ' bffc6d4'
getVersionString = {
String buildVersion = getBuildVersion()

View File

@ -3,8 +3,11 @@ package io.anuke.mindustry.world.blocks.distribution;
import io.anuke.mindustry.world.Block;
public class MassDriver extends Block {
protected float range;
public MassDriver(String name) {
super(name);
update = true;
solid = true;
}
}