Page 1 of 1

MQ2ItemDisplay - Pushback

Posted: Mon Feb 09, 2004 8:19 pm
by blacrain
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

Posted: Mon Feb 09, 2004 10:55 pm
by Amadeus
thanks ...will be cvs'd