Updated uCore, bugfixes, changed build script
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
#Autogenerated file. Do not modify.
|
||||
#Thu Feb 08 23:39:41 EST 2018
|
||||
#Fri Feb 09 00:15:08 EST 2018
|
||||
version=beta
|
||||
androidBuildCode=124
|
||||
androidBuildCode=131
|
||||
name=Mindustry
|
||||
code=3.3
|
||||
build=custom build
|
||||
|
||||
@@ -48,7 +48,7 @@ public class NetServer extends Module{
|
||||
|
||||
Net.handleServer(ConnectPacket.class, (id, packet) -> {
|
||||
|
||||
if(packet.version != Version.build && packet.version != -1){ //ignore 'custom builds'
|
||||
if(packet.version != Version.build && packet.version != -1 && Version.build != -1){ //ignore 'custom builds' on both ends
|
||||
Net.kickConnection(id, packet.version > Version.build ? KickReason.serverOutdated : KickReason.clientOutdated);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -141,7 +141,7 @@ public class Enemy extends SyncEntity {
|
||||
|
||||
this.health = health;
|
||||
|
||||
interpolator.read(this.x, this.y, x, y, angle, time);
|
||||
interpolator.read(this.x, this.y, x, y, angle/2f, time);
|
||||
}
|
||||
|
||||
public void shoot(BulletType bullet){
|
||||
|
||||
Reference in New Issue
Block a user