Fixed #5734 / New derelict icon
This commit is contained in:
@@ -42,7 +42,7 @@ public class MapEditorDialog extends Dialog implements Disposable{
|
||||
private BaseDialog menu;
|
||||
private Table blockSelection;
|
||||
private Rules lastSavedRules;
|
||||
private boolean saved = false;
|
||||
private boolean saved = false; //currently never read
|
||||
private boolean shownWithMap = false;
|
||||
private Seq<Block> blocksOut = new Seq<>();
|
||||
|
||||
|
||||
@@ -196,7 +196,7 @@ public class MapView extends Element implements GestureListener{
|
||||
|
||||
if(Core.scene.getScrollFocus() != this) return;
|
||||
|
||||
zoom += Core.input.axis(KeyCode.scroll) / 10f * zoom;
|
||||
zoom += Core.input.axis(Binding.zoom) / 10f * zoom;
|
||||
clampZoom();
|
||||
}
|
||||
|
||||
|
||||
@@ -454,6 +454,10 @@ public abstract class InputHandler implements InputProcessor, GestureListener{
|
||||
public void update(){
|
||||
player.typing = ui.chatfrag.shown();
|
||||
|
||||
if(player.dead()){
|
||||
droppingItem = false;
|
||||
}
|
||||
|
||||
if(player.isBuilder()){
|
||||
player.unit().updateBuilding(isBuilding);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user