Ignore:
Timestamp:
08/28/10 19:46:27 (21 months ago)
Author:
james
Message:

updated stoplist for append plugin
added support for forcing female and male mixing (:malemixin and :femalemixin)
use ultraprefix for some plurals
more fixes in output_english
more stoplist for complex_spoonerism
stoplist for complex_ass
simple_calls plugin
simple_countries plugin
support for how much question types
fixed action_simple loading
a lot of abstract changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/modules/abstract.tcl

    r1051 r1084  
    7373set BMOTION_MIXIN_NONE 2 
    7474set BMOTION_MIXIN_BOTH 3 
     75set BMOTION_MIXIN_FEMALE 4 
     76set BMOTION_MIXIN_MALE 5 
    7577 
    7678if { [bMotion_setting_get "abstractMaxAge"] != "" } { 
     
    435437                        } 
    436438                } 
     439                5 { 
     440                        if [bMotion_abstract_exists "${abstract}_male"] { 
     441                                bMotion_putloglev 1 * "mixing in male version of $abstract" 
     442                                set final_version [concat $final_version [bMotion_abstract_all "${abstract}_male"]] 
     443                        } 
     444                } 
     445                4 { 
     446                        if [bMotion_abstract_exists "${abstract}_female"] { 
     447                                bMotion_putloglev 1 * "mixing in female version of $abstract" 
     448                                set final_version [concat $final_version [bMotion_abstract_all "${abstract}_female"]] 
     449                        } 
     450                } 
     451 
    437452                default { 
    438453                        putlog "bMotion ERROR: unknown mixin type $mixin_type for abstract $abstract" 
Note: See TracChangeset for help on using the changeset viewer.