From 5203d17910840c911eb9ae10b2793fcac41b10bf Mon Sep 17 00:00:00 2001 From: MEEP of Faith Date: Thu, 22 Oct 2020 15:18:12 -0700 Subject: [PATCH] Comment stuff --- .../entities/abilities/MovementLightningAbility.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/core/src/mindustry/entities/abilities/MovementLightningAbility.java b/core/src/mindustry/entities/abilities/MovementLightningAbility.java index 9ce306d5c7..24bc2a55aa 100644 --- a/core/src/mindustry/entities/abilities/MovementLightningAbility.java +++ b/core/src/mindustry/entities/abilities/MovementLightningAbility.java @@ -13,17 +13,16 @@ public class MovementLightningAbility extends Ability{ public float damage = 35f; //Ticks between firing public float reload = 15f; - //Length of lightning + //Length of the lightning public int length = 12; //Speeds for when to start lightninging and when to stop getting faster public float minSpeed = 0.8f, maxSpeed = 1.2f; - //Shoot effect - public Effect shootEffect = Fx.sparkShoot; - //Shoot sound - public Sound shootSound = Sounds.spark; //Lightning Color public Color color = Color.valueOf("a9d8ff"); + public Effect shootEffect = Fx.sparkShoot; + public Sound shootSound = Sounds.spark; + MovementLightningAbility(){} public MovementLightningAbility(float damage, int length, float reload, float minSpeed, float maxSpeed, Color color){