View Single Post
  #1  
Old 05-09-2005, 01:00 AM
cavedude's Avatar
cavedude
The PEQ Dude
 
Join Date: Apr 2003
Location: -
Posts: 1,988
Default 0.6.1 DR1 Archery fix

special_attacks.cpp ~Line 496

Code:
if (!Ammo || Ammo->IsType(ItemClassCommon)) {
Change to:

Code:
 
if (!Ammo || !Ammo->IsType(ItemClassCommon)) {
It seems that items in the ammo slot (possibly others as well) don't use charges. I'll look into that when I get home. For now at least the Rangers are happy.
Reply With Quote