Whoops; don't try to mark a location as reserved if we couldn't find one.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1521 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-06-20 23:06:40 +00:00
parent b32ca52809
commit cabfc118cb
@@ -1,5 +1,5 @@
// //
// $Id: SpotSceneManager.java,v 1.12 2002/06/20 22:38:58 mdb Exp $ // $Id: SpotSceneManager.java,v 1.13 2002/06/20 23:06:40 mdb Exp $
package com.threerings.whirled.spot.server; package com.threerings.whirled.spot.server;
@@ -67,8 +67,10 @@ public class SpotSceneManager extends SceneManager
{ {
int locId = SpotSceneUtil.getUnoccupiedLocation( int locId = SpotSceneUtil.getUnoccupiedLocation(
_sscene.getModel(), _locationOccs, preferClusters); _sscene.getModel(), _locationOccs, preferClusters);
// mark the location as pending if (locId != -1) {
_locationOccs[_sscene.getLocationIndex(locId)] = -1; // mark the location as pending
_locationOccs[_sscene.getLocationIndex(locId)] = -1;
}
return locId; return locId;
} }