We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a8deb6 commit 43d8c13Copy full SHA for 43d8c13
1 file changed
engine/src/main/battlecode/world/InternalRobot.java
@@ -743,7 +743,7 @@ public void hitGround() {
743
744
public void hitTarget(boolean isSecondMove) {
745
int damage = GameConstants.THROW_DAMAGE
746
- - GameConstants.THROW_DAMAGE_PER_TILE * (2 * this.remainingThrowDuration + (isSecondMove ? 0 : 1));
+ + GameConstants.THROW_DAMAGE_PER_TILE * (2 * this.remainingThrowDuration + (isSecondMove ? 0 : 1));
747
748
if (this.gameWorld.getRobot(this.getLocation().add(this.thrownDir)) != null) {
749
InternalRobot robot = this.gameWorld.getRobot(this.getLocation().add(this.thrownDir));
0 commit comments