MQ2ItemDisplay - Pushback

A forum for reporting bugs NOT related to custom plugins.

Moderator: MacroQuest Developers

blacrain
decaying skeleton
decaying skeleton
Posts: 5
Joined: Tue Jul 29, 2003 11:22 pm

MQ2ItemDisplay - Pushback

Post by blacrain » Mon Feb 09, 2004 8:19 pm

Some spells (Bard Mez in peticular) have a negative pushback (pull)... so

~Line 139
old:

Code: Select all

if (pSpell->PushBack > 0.0f) {
new:

Code: Select all

if (pSpell->PushBack != 0.0f) {
Was hard as hell swimming through to figure out why I had range and resist type smashed together. :D

Amadeus
The Maestro
The Maestro
Posts: 2036
Joined: Sat Jun 29, 2002 3:51 pm

Post by Amadeus » Mon Feb 09, 2004 10:55 pm

thanks ...will be cvs'd