Thread: Throwing fix
View Single Post
  #1  
Old 03-07-2009, 06:13 AM
Wolftousen
Sarnak
 
Join Date: Apr 2008
Posts: 49
Default Throwing fix

File: zone/special_attacks.cpp
Line: 830

From:
if (!target->CheckHitChance(this, ARCHERY, 13)) {

To:
if (!target->CheckHitChance(this, THROWING, 13)) {

Description: Found this while searching for why Berserker Rage Volley Discipline wasn't working properly. There are 2 seperate functions for ranged attacks, one for throwing one for archery, but in both functions this line exists. It should check the throwing skill in the throwing function, not the archery skill...
Reply With Quote