equal
deleted
inserted
replaced
3498 if ( $prev_l == 'p' && mt_rand(0, 7) == 4 ) |
3498 if ( $prev_l == 'p' && mt_rand(0, 7) == 4 ) |
3499 $word .= 't'; |
3499 $word .= 't'; |
3500 else if ( $prev_l == 'p' && mt_rand(0, 5) == 1 ) |
3500 else if ( $prev_l == 'p' && mt_rand(0, 5) == 1 ) |
3501 $word .= 'h'; |
3501 $word .= 'h'; |
3502 // this rule allows "ck" which can result in the occasional "dick", "fuck", etc. that tends |
3502 // this rule allows "ck" which can result in the occasional "dick", "fuck", etc. that tends |
3503 // to end up on 4chan, but I decided to keep it, because it increases word complexity. |
3503 // to end up on /r/funny, but I decided to keep it, because it increases word complexity. |
3504 else if ( $prev_l == 'c' && mt_rand(0, 3) == 1 ) |
3504 else if ( $prev_l == 'c' && mt_rand(0, 3) == 1 ) |
3505 $word .= 'k'; |
3505 $word .= 'k'; |
3506 else if ( $prev_l == 'q' && mt_rand(0, 5) != 1 ) |
3506 else if ( $prev_l == 'q' && mt_rand(0, 5) != 1 ) |
3507 $word .= 'u'; |
3507 $word .= 'u'; |
3508 else |
3508 else |