Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix inversion of full_punch_interval
  • Loading branch information
Ekdohibs committed Jul 2, 2014
1 parent 567dea2 commit 3d6d66b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tool.cpp
Expand Up @@ -166,7 +166,7 @@ HitParams getHitParams(const ItemGroupList &armor_groups,
for(std::map<std::string, s16>::const_iterator
i = tp->damageGroups.begin(); i != tp->damageGroups.end(); i++){
s16 armor = itemgroup_get(armor_groups, i->first);
damage += i->second * rangelim(time_from_last_punch * full_punch_interval, 0.0, 1.0)
damage += i->second * rangelim(time_from_last_punch / full_punch_interval, 0.0, 1.0)
* armor / 100.0;
}

Expand Down

0 comments on commit 3d6d66b

Please sign in to comment.