Minor bug fix for agnostics
Faction bonuses (or penalties) to agnostic characters do not show up appropriately when you /consider. However, the MOBs will still aggro, or not aggro, appropriately.
It took me awhile to track down the reason. I don't know why this is, but basically the consider code passes an agnostic's deity as 396 while the aggro code passes it as 140. The faction calculating program doesn't recognize 396, but it does recognize 140. This is easy to to fix. You just need to change the following in ZoneDatabase::GetFactionData in zone/faction.cpp: Code:
if (deity_mod == 140) Code:
if(deity_mod == 140 || deity_mod == 396) |
Quote:
|
All times are GMT -4. The time now is 03:46 PM. |
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.