소스 검색

solve issue #2003 (ParticleDepositionHeightMap.load return value) (#2005)

Stephen Gold 2 년 전
부모
커밋
921e0f4513
1개의 변경된 파일2개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 3
      jme3-terrain/src/main/java/com/jme3/terrain/heightmap/ParticleDepositionHeightMap.java

+ 2 - 3
jme3-terrain/src/main/java/com/jme3/terrain/heightmap/ParticleDepositionHeightMap.java

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2009-2021 jMonkeyEngine
+ * Copyright (c) 2009-2023 jMonkeyEngine
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -321,8 +321,7 @@ public class ParticleDepositionHeightMap extends AbstractHeightMap {
 
         logger.fine("Created heightmap using Particle Deposition");
 
-
-        return false;
+        return true; // success
     }
 
     /**