Thanks for the reply. I meant capitalize strings in : print "String" commands. Now I guess that I just have to write them in upper case from the very start.
As of the most recent beta (beta 19), if you use the TWO theme, or a descendent of the two theme, then the entire game will be capitalized whether or not your print messages are capitalized or not. No need to manually capitalize your print messages.
To override this setting (you only need to do this if you DO NOT WANT allcaps:
start_theme = my_theme // Your game code here themes { my_theme : theme { // Inherit all the settings from the TWO theme extends = two theme_settings { capitalization = original | upper | lower | camel } } }
Please can you provide small sample of this. The capitalization setting is supposed to be an ultimate override of case except if it is set to original. That is, the per category capitalisation still stands if set to original. lower, upper and camel will override all settings. Original won't override the granular settings (such as the Lister capitalization settings). Maybe I'll change the case setting default to "unaltered" instead of original? Or just document it a little bit more?