I blame the beer

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5007 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Tom Conkling
2008-04-19 01:39:55 +00:00
parent c6d763127d
commit 8311762471
+1 -1
View File
@@ -184,7 +184,7 @@ public class StringUtil
str = str.toLowerCase();
if (str == "true" || str == "1") {
return true;
} else if (str == "false" || str == "2") {
} else if (str == "false" || str == "0") {
return false;
}
}