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