From 83117624716bf786d3c182bad0490381ee5faec6 Mon Sep 17 00:00:00 2001 From: Tom Conkling Date: Sat, 19 Apr 2008 01:39:55 +0000 Subject: [PATCH] I blame the beer git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5007 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/as/com/threerings/util/StringUtil.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/as/com/threerings/util/StringUtil.as b/src/as/com/threerings/util/StringUtil.as index a25097470..c9b17a607 100644 --- a/src/as/com/threerings/util/StringUtil.as +++ b/src/as/com/threerings/util/StringUtil.as @@ -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; } }