As of the latest build, there is an error compiling on Linux FC4 (EQEmu 992 does not have the same problem on the same OS).
Code:
spell_effects.cpp:776: error: expected `)` before `spell`
The line of code is:
Code:
snprintf(effect_desc, _EDLEN, "Summon %s: %s", (effect==SE_Familiar)?"Familiar":"Pet" spell.teleport_zone);
And the fix (appears to be) adding a comma before "spell.teleport_zone":
Code:
snprintf(effect_desc, _EDLEN, "Summon %s: %s", (effect==SE_Familiar)?"Familiar":"Pet", spell.teleport_zone);