mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 11:44:19 +01:00
Fixed static methods in PerlinNoiseGenerator
By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
parent
52c737b3c1
commit
0664487563
1 changed files with 2 additions and 2 deletions
|
@ -189,7 +189,7 @@ public class PerlinNoiseGenerator extends NoiseGenerator {
|
|||
* @param amplitude How much to alter the amplitude by each octave
|
||||
* @return Resulting noise
|
||||
*/
|
||||
public double getNoise(double x, double y, int octaves, double frequency, double amplitude) {
|
||||
public static double getNoise(double x, double y, int octaves, double frequency, double amplitude) {
|
||||
return instance.noise(x, y, octaves, frequency, amplitude);
|
||||
}
|
||||
|
||||
|
@ -204,7 +204,7 @@ public class PerlinNoiseGenerator extends NoiseGenerator {
|
|||
* @param amplitude How much to alter the amplitude by each octave
|
||||
* @return Resulting noise
|
||||
*/
|
||||
public double getNoise(double x, double y, double z, int octaves, double frequency, double amplitude) {
|
||||
public static double getNoise(double x, double y, double z, int octaves, double frequency, double amplitude) {
|
||||
return instance.noise(x, y, z, octaves, frequency, amplitude);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue