From 4c224d0b9c71c727524003c32812321f1367e0c1 Mon Sep 17 00:00:00 2001 From: Anuken Date: Wed, 22 Aug 2018 23:45:01 -0400 Subject: [PATCH] Balancing, keybinds --- .../src/io/anuke/mindustry/content/bullets/TurretBullets.java | 3 ++- core/src/io/anuke/mindustry/input/DefaultKeybinds.java | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/core/src/io/anuke/mindustry/content/bullets/TurretBullets.java b/core/src/io/anuke/mindustry/content/bullets/TurretBullets.java index 36306a85e4..352a726274 100644 --- a/core/src/io/anuke/mindustry/content/bullets/TurretBullets.java +++ b/core/src/io/anuke/mindustry/content/bullets/TurretBullets.java @@ -36,7 +36,8 @@ public class TurretBullets extends BulletList implements ContentList{ public void load(){ healBullet = new BulletType(5.2f, 25){ - float healAmount = 14f; + float healAmount = 20f; + { hiteffect = BulletFx.hitLaser; despawneffect = BulletFx.hitLaser; diff --git a/core/src/io/anuke/mindustry/input/DefaultKeybinds.java b/core/src/io/anuke/mindustry/input/DefaultKeybinds.java index 9f65e7d3be..0a5c5cc01f 100644 --- a/core/src/io/anuke/mindustry/input/DefaultKeybinds.java +++ b/core/src/io/anuke/mindustry/input/DefaultKeybinds.java @@ -24,14 +24,14 @@ public class DefaultKeybinds{ //"shoot", Input.MOUSE_LEFT, "rotate", new Axis(Input.SCROLL), "dash", Input.SHIFT_LEFT, - "ability", Input.CONTROL_LEFT, + "ability", Input.SPACE, "drop_unit", Input.SHIFT_LEFT, new Category("view"), "zoom_hold", Input.CONTROL_LEFT, "zoom", new Axis(Input.SCROLL), "zoom_minimap", new Axis(Input.MINUS, Input.PLUS), "menu", Gdx.app.getType() == ApplicationType.Android ? Input.BACK : Input.ESCAPE, - "pause", Input.SPACE, + "pause", Input.Q, "toggle_menus", Input.C, new Category("multiplayer"), "player_list", Input.TAB,