diff --git a/xtrn/lord2/l2lib.js b/xtrn/lord2/l2lib.js index bda6a338883683372071a5ee48192b13bc56c69f..ff6518368309954b315ab6fde082daf79637fe6f 100644 --- a/xtrn/lord2/l2lib.js +++ b/xtrn/lord2/l2lib.js @@ -571,10 +571,7 @@ function clean_str(str) var i; for (i = 0; i < str.length; i += 1) { - if (str[i] === '$') { - // Just skip it. - } - else if (str[i] !== '`') { + if (str[i] !== '`') { ret += str[i]; } else {