Quote:
Originally Posted by So_1337
|
If these spells shouldn't give Rez effects:
in zone/client_process.cpp, void Client::OPRezzAnswer(const EQApplicationPacket* app),
around line 943, try changing
Code:
SpellOnTarget(756,this);
to:
Code:
// No Rez effects for Customer Service Rez, or Divine Rez
if((ra->spellid != 994) && (ra->spellid != 2738))
SpellOnTarget(756,this);
Untested.