First patch for new version.
http://www.mediafire.com/download/1346cq019pj697o/patch_0_94_p1.zip
- Fixed Dr.Genki office access.
- Fixed new items that not adding health as supposed to. (generic.life -> generic.health)
- Fixed few missed cases of used letter "é" in texts - java have issues with them without special locale setup (who can cause some other issues). So, "cafe" and "eclair" will be without "é".
Why dont you use unicode letters? 'é' is charcode '\u00e9' For all codepages look here: http://www.unicode.org/charts/ (This code is from Latin-1 Supplement)
ReplyDeleteJava have some issues with unicode without setting up locale for it first (it's what you can see - strange symbols). And setting up locale cause another issues in some systems. I still learn this, and before I will be sure that locale manipulations will not break anything more it's will be like this - with only standart english letters. Most bad from this - it's can work on one system and don't work on another. I need to learn and investigate this more.
DeleteAnd I always thought the point of unicode is to be independent from system locale.
DeleteBetter not to break anything, but learning is always a good thing. I learned something today, too. :-D
There's a bug in the recalculation of abdomen.food in the abdomen_recalc_fat script. It seems that abdomen.food is only reduced when calories are above 0. However, you can get calories below 0 by swimming or dancing, then eat and permanently have an inflated food-belly. The belly won't deflate until you eat enough to flip generic.calories to a positive number.
ReplyDeleteThanks, fixed. :)
Delete