From cef7e14583432fd111ce7559c152809f8707e1b0 Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Fri, 25 May 2007 19:42:03 +0000 Subject: [PATCH] Tracked down the bug that was causing some composed translations to come out as "mmmmmmmmmmmmmmmmmmmmmm". git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4721 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/as/com/threerings/util/MessageBundle.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/as/com/threerings/util/MessageBundle.as b/src/as/com/threerings/util/MessageBundle.as index cffce5900..96ecbc1f6 100644 --- a/src/as/com/threerings/util/MessageBundle.as +++ b/src/as/com/threerings/util/MessageBundle.as @@ -371,7 +371,7 @@ public class MessageBundle var buf :StringBuilder = new StringBuilder(); for (var ii :int = 0; ii < val.length; ii++) { - var ch :String = val.charAt(0); + var ch :String = val.charAt(ii); if (ch != "\\" || ii == val.length-1) { buf.append(ch); } else {