fixed typo in MultiTerrainLodControl causing terrains not to be removed

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10425 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
bre..om 2013-02-23 16:21:46 +00:00
parent 13758bd985
commit 7360c789fa

View File

@ -80,7 +80,7 @@ public class MultiTerrainLodControl extends TerrainLodControl {
* the render thread.
*/
public void removeTerrain(TerrainQuad tq) {
removedTerrains.remove(tq);
removedTerrains.add(tq);
}
@Override