Page 1 of 1

[committed] Fix for who command

PostPosted: Fri May 07, 2010 8:52 pm
by uhlersoth
Yay, my first code contribution! I noticed that typing the command /who help in-game doesn't actually display syntax help on the /who command. So in who.cs, I added the following code, after the case "all" and before the case "staff" section of the switch:
Code: Select all
case "help": // list syntax for the who command
{
DisplaySyntax(client);
return;
}
So my question. Is there a process for getting this submitted into the actual code base?

Re: Fix for who command

PostPosted: Fri May 07, 2010 8:57 pm
by Tinantiol
post into dol contribution and developmente into a .patch file :D

Re: Fix for who command

PostPosted: Fri May 07, 2010 9:56 pm
by Graveen
Thanks a lot for your contribution !

Here are the rules, for contributions: http://www.dolserver.net/viewtopic.php?f=47&t=12301
and here are the coding guidelines: http://www.dolserver.net/viewtopic.php?f=47&t=13937

I'm always happy when new contributions are coming !

/bow

Re: Fix for who command

PostPosted: Fri May 07, 2010 10:11 pm
by bluraven
They're like Scooby Snacks for Grav ~ yummy yummy contributions ^_^

Re: Fix for who command

PostPosted: Sat May 29, 2010 2:32 pm
by uhlersoth
Might want to close/delete/mark this thread, since it's committed at:

http://www.dolserver.net/viewtopic.php?f=47&t=16263