Improved Spout biome handling and add LocalWorld method for setting biome

This commit is contained in:
zml2008
2012-03-20 22:45:48 -07:00
parent a8eeacccd4
commit 0702a0f0ac
8 changed files with 89 additions and 14 deletions

View File

@ -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