From 9ac3e86fe03e5f63dbd765bf90cb50c086e1728d Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Tue, 13 Feb 2007 00:26:46 +0000 Subject: [PATCH] Being available in standalone mode should be the default. This will of course make life harder for Yohoho, but making life easier for Yohoho should not come at the expense of baffling default behavior. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4574 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/presents/client/BasicDirector.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/threerings/presents/client/BasicDirector.java b/src/java/com/threerings/presents/client/BasicDirector.java index 0c93766d1..585578762 100644 --- a/src/java/com/threerings/presents/client/BasicDirector.java +++ b/src/java/com/threerings/presents/client/BasicDirector.java @@ -149,5 +149,5 @@ public class BasicDirector protected PresentsContext _ctx; /** Whether or not this director is available in standalone mode. */ - protected boolean _availableInStandalone; + protected boolean _availableInStandalone = true; }