Added polish lang, fixed conveyor stacking bug
This commit is contained in:
@@ -13,7 +13,7 @@ import java.util.Locale;
|
||||
import static io.anuke.mindustry.Vars.ui;
|
||||
|
||||
public class LanguageDialog extends FloatingDialog{
|
||||
private Locale[] locales = {Locale.ENGLISH, new Locale("fr", "FR"), new Locale("ru"),
|
||||
private Locale[] locales = {Locale.ENGLISH, new Locale("fr", "FR"), new Locale("ru"), new Locale("pl", "PL"),
|
||||
new Locale("es", "LA"), new Locale("pt", "BR"), new Locale("ko"), new Locale("in", "ID")};
|
||||
|
||||
public LanguageDialog(){
|
||||
|
||||
@@ -105,7 +105,7 @@ public class Conveyor extends Block{
|
||||
}
|
||||
|
||||
boolean canmove = i == entity.convey.size - 1 ||
|
||||
!(pos2.set(entity.convey.get(i + 1)).y - pos.y < itemSpace);
|
||||
!(pos2.set(entity.convey.get(i + 1)).y - pos.y < itemSpace * Math.max(Timers.delta(), 1f));
|
||||
|
||||
float minmove = 1f / (Short.MAX_VALUE - 2);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user