[ScryMUD] SVN Commit Info r918 - trunk/mud/grrmud/server

scrymud at wanfear.com scrymud at wanfear.com
Wed May 16 11:39:12 PDT 2007


Author: eroper
Date: 2007-05-16 11:39:12 -0700 (Wed, 16 May 2007)
New Revision: 918

Modified:
   trunk/mud/grrmud/server/login.cc
Log:
Dys caught the fact that during character creation, you can type in a class
"name" as opposed to its index number. "thief" resulted in rolling a cleric
instead of a thief. Interestingly enough, this code doesn't look as though it
has been maintained in a while as there isn't even a "cleric" comparison.

Thanks Dys!


Modified: trunk/mud/grrmud/server/login.cc
===================================================================
--- trunk/mud/grrmud/server/login.cc	2007-03-07 00:23:30 UTC (rev 917)
+++ trunk/mud/grrmud/server/login.cc	2007-05-16 18:39:12 UTC (rev 918)
@@ -365,7 +365,7 @@
                j = RANGER;
             }
             else if (strncasecmp(string, "thief", slen) == 0) {
-               j = CLERIC;
+               j = THIEF;
             }
             else if (strncasecmp(string, "bard", slen) == 0) {
                j = BARD;




More information about the ScryMUD mailing list