Changed placement controls / Fixed complete sectors not resetting

This commit is contained in:
Anuken
2018-10-17 17:28:24 -04:00
parent fdffa77bc5
commit f530c9514f
6 changed files with 10 additions and 7 deletions

View File

@@ -20,7 +20,7 @@ public class DefaultKeybinds{
"move_x", new Axis(Input.A, Input.D),
"move_y", new Axis(Input.S, Input.W),
"select", Input.MOUSE_LEFT,
"deselect", Input.SPACE,
"deselect", Input.MOUSE_RIGHT,
"break", Input.MOUSE_RIGHT,
"rotate", new Axis(Input.SCROLL),
"dash", Input.SHIFT_LEFT,

View File

@@ -147,11 +147,13 @@ public class DesktopInput extends InputHandler{
pollInput();
//removed for now, will add back if necessary
/*
if(recipe != null && !Settings.getBool("desktop-place-help-2", false)){
ui.showInfo("$text.construction.desktop");
Settings.putBool("desktop-place-help-2", true);
Settings.save();
}
}*/
//deselect if not placing
if(!isPlacing() && mode == placing){