PennMUSH 1.8.3p11
authorRick L Bird <nveid@yahoo.com>
Thu, 5 May 2011 22:35:43 +0000 (18:35 -0400)
committerRick L Bird <nveid@yahoo.com>
Thu, 5 May 2011 22:35:43 +0000 (18:35 -0400)
Author: allthecoolkidshaveone
<allthecoolkidshaveone@ba372814-4f39-11de-9ad6-1127a62b9fcd>
Date:   Fri Oct 30 06:30:38 2009 +0000

    Issue 114: randword() funkiness part 2.

Author: allthecoolkidshaveone
<allthecoolkidshaveone@ba372814-4f39-11de-9ad6-1127a62b9fcd>
Date:   Fri Oct 30 06:29:54 2009 +0000
    Issue 114: randword() funkiness.

Fixes #156

src/funlist.c

index e13ec47b85d7af07b003488fbf50eb3b095eaf5c..4d6668e276c6a06b8f00924c55c479af7b6b7040 100644 (file)
@@ -1407,10 +1407,6 @@ FUNCTION(fun_randword)
 
   if (word_count == 0)
     return;
-  else if (word_count == 1) {
-    safe_strl(args[0], arglens[0], buff, bp);
-    return;
-  }
 
   word_index = get_random32(0, word_count - 1);