Scenes aren't required to have a default entrance

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@750 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Charlie Groves
2008-09-26 00:34:57 +00:00
parent 8699c2c4c5
commit 4ddb11c5bb
@@ -182,8 +182,8 @@ public class EditorFrame extends ManagedJFrame
} }
} }
/** /**
* Creates the EditorScenePanel to use in this frame. * Creates the EditorScenePanel to use in this frame.
*/ */
protected EditorScenePanel createScenePanel () protected EditorScenePanel createScenePanel ()
{ {
@@ -425,10 +425,6 @@ public class EditorFrame extends ManagedJFrame
err += "No scene type specified.\n"; err += "No scene type specified.\n";
} }
if (_svpanel.getEntrance() == null) {
err += "No default entrance portal.\n";
}
if ("".equals(err)) { if ("".equals(err)) {
return true; return true;
} else { } else {
@@ -461,7 +457,7 @@ public class EditorFrame extends ManagedJFrame
_filepath = filepath; _filepath = filepath;
setTitle("Narya Scene Editor: " + setTitle("Narya Scene Editor: " +
(_filepath == null ? "<new>" : _filepath)); (_filepath == null ? "<new>" : _filepath));
} }
/** /**
* Handles a request to quit. Presently this just quits, but * Handles a request to quit. Presently this just quits, but