View Single Post
  #2  
Old 06-14-2009, 08:23 PM
trevius's Avatar
trevius
Developer
 
Join Date: Aug 2006
Location: USA
Posts: 5,946
Default

Hmm, it compiled fine under Linux for me. Maybe removing the "Seperator *sep" causes a problem with Windows compiles. You can try changing this:


/zone/command.cpp line 5218
Code:
void command_randomfeatures(Client *c)
to this:
/zone/command.cpp line 5218
Code:
void command_randomfeatures(Client *c, const Seperator *sep)
And also changing this:
/zone/command.h line 222
Code:
void command_randomfeatures(Client *c);
to this:
/zone/command.h line 222
Code:
void command_randomfeatures(Client *c, const Seperator *sep);
If that fixes it and the command still works properly, then I can correct that on the next SVN update I do unless someone wants to add it in before that.
__________________
Trevazar/Trevius Owner of: Storm Haven
Everquest Emulator FAQ (Frequently Asked Questions) - Read It!

Last edited by trevius; 06-15-2009 at 07:07 AM..
Reply With Quote