mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-14 21:08:35 +00:00
Improved Spout biome handling and add LocalWorld method for setting biome
This commit is contained in:
@ -105,11 +105,18 @@ public abstract class LocalWorld {
|
||||
/**
|
||||
* Get biome type
|
||||
*
|
||||
* @param pt
|
||||
* @return
|
||||
* @param pt The (x, z) location to check the biome at
|
||||
* @return The biome type at the location
|
||||
*/
|
||||
public abstract BiomeType getBiome(Vector2D pt);
|
||||
|
||||
/**
|
||||
* Set the biome type
|
||||
* @param pt The (x, z) location to set the biome at
|
||||
* @param biome The biome type to set to
|
||||
*/
|
||||
public abstract void setBiome(Vector2D pt, BiomeType biome);
|
||||
|
||||
/**
|
||||
* set block type & data
|
||||
* @param pt
|
||||
|
Reference in New Issue
Block a user