Skip to content

Commit

Permalink
Reduce swing attack range to 4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
plushmonkey committed May 12, 2017
1 parent eeee6e9 commit cc505cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion avalanche/behavior/BehaviorSwing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ void BehaviorSwing::OnTick() {
}
}

if (closestDist <= 5.0) {
if (closestDist <= 4.0) {
out::UseEntityPacket attackPacket(closest->GetEntityId(), out::UseEntityPacket::Action::Attack);

m_Client->GetConnection()->SendPacket(&attackPacket);
Expand Down

0 comments on commit cc505cd

Please sign in to comment.